2011-07-17 15:42:19 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include "funk/openbeacon.h"
|
|
|
|
#include "funk/nrf24l01p.h"
|
2011-07-17 12:25:15 +00:00
|
|
|
#include "basic/byteorder.h"
|
2011-07-17 15:42:19 +00:00
|
|
|
#include "sysdefs.h"
|
2011-07-17 18:32:17 +00:00
|
|
|
#include "filesystem/ff.h"
|
2011-07-23 17:17:14 +00:00
|
|
|
#include "basic/uuid.h"
|
2011-07-17 12:25:15 +00:00
|
|
|
|
2011-07-18 08:31:58 +00:00
|
|
|
//const uint32_t key[4] = {0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF};
|
2011-08-05 01:18:43 +00:00
|
|
|
#include "SECRETS"
|
2011-07-18 08:31:58 +00:00
|
|
|
const uint8_t useencryption = 1;
|
2011-07-17 19:01:09 +00:00
|
|
|
const uint8_t mac[5] = {1,2,3,2,1};
|
2011-07-17 18:32:17 +00:00
|
|
|
|
2011-07-18 22:19:50 +00:00
|
|
|
volatile uint32_t oid = 0;
|
|
|
|
volatile uint32_t seq = 0;
|
|
|
|
volatile uint8_t strength = 0;
|
2011-08-05 20:55:46 +00:00
|
|
|
static void openbeaconSave(uint32_t s);
|
2011-07-17 12:25:15 +00:00
|
|
|
|
2011-08-06 00:41:40 +00:00
|
|
|
static struct NRF_CFG oldconfig;
|
|
|
|
|
2011-08-05 20:55:46 +00:00
|
|
|
static void openbeaconShutdown(void)
|
2011-07-18 22:19:50 +00:00
|
|
|
{
|
|
|
|
openbeaconSave(seq);
|
|
|
|
}
|
|
|
|
|
2011-08-05 20:55:46 +00:00
|
|
|
static void openbeaconSaveBlock(void)
|
2011-07-18 22:19:50 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
openbeaconSave(seq + OPENBEACON_SAVE + 1);
|
|
|
|
}
|
|
|
|
|
2011-08-05 20:55:46 +00:00
|
|
|
static void openbeaconSave(uint32_t s)
|
2011-07-17 12:25:15 +00:00
|
|
|
{
|
2011-07-17 19:01:09 +00:00
|
|
|
FIL file;
|
2011-07-17 18:32:17 +00:00
|
|
|
BYTE buf[4];
|
|
|
|
UINT readbytes;
|
|
|
|
|
2011-08-05 21:35:25 +00:00
|
|
|
if( f_open(&file, "beacon.cfg", FA_OPEN_ALWAYS|FA_WRITE) )
|
2011-07-17 18:32:17 +00:00
|
|
|
return;
|
|
|
|
|
2011-07-18 22:19:50 +00:00
|
|
|
uint32touint8p(s, buf);
|
2011-07-17 18:32:17 +00:00
|
|
|
|
|
|
|
if( f_write(&file, buf, 4, &readbytes) )
|
|
|
|
return;
|
|
|
|
|
|
|
|
f_close(&file);
|
2011-07-17 15:42:19 +00:00
|
|
|
}
|
|
|
|
|
2011-08-05 20:55:46 +00:00
|
|
|
static void openbeaconRead()
|
2011-07-17 15:42:19 +00:00
|
|
|
{
|
2011-07-17 19:01:09 +00:00
|
|
|
FIL file;
|
2011-07-17 18:32:17 +00:00
|
|
|
BYTE buf[4];
|
|
|
|
UINT readbytes;
|
|
|
|
|
2011-08-05 21:35:25 +00:00
|
|
|
if( f_open(&file, "beacon.cfg", FA_OPEN_EXISTING|FA_READ) )
|
2011-07-17 18:32:17 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if( f_read(&file, buf, 4, &readbytes) )
|
|
|
|
return;
|
2011-07-17 23:16:44 +00:00
|
|
|
seq = uint8ptouint32(buf);
|
|
|
|
|
|
|
|
f_close(&file);
|
2011-07-17 15:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-23 17:17:14 +00:00
|
|
|
void openbeaconSetup(void)
|
2011-07-17 15:42:19 +00:00
|
|
|
{
|
2011-07-23 17:17:14 +00:00
|
|
|
oid = GetUUID32();
|
2011-07-17 12:25:15 +00:00
|
|
|
strength = 0;
|
2011-07-17 15:42:19 +00:00
|
|
|
openbeaconRead();
|
2011-07-18 22:19:50 +00:00
|
|
|
openbeaconSaveBlock();
|
2011-07-17 12:25:15 +00:00
|
|
|
}
|
|
|
|
|
2011-08-05 20:55:46 +00:00
|
|
|
static uint8_t openbeaconSendPacket(uint32_t id, uint32_t seq,
|
2011-07-17 23:16:44 +00:00
|
|
|
uint8_t flags, uint8_t strength)
|
2011-07-17 12:25:15 +00:00
|
|
|
{
|
|
|
|
uint8_t buf[32];
|
|
|
|
|
|
|
|
buf[0]=0x10; // Length: 16 bytes
|
|
|
|
buf[1]=0x17; // Proto - fixed at 0x17?
|
|
|
|
buf[2]=flags;
|
|
|
|
buf[3]=strength*85; // Send intensity
|
|
|
|
|
2011-07-17 23:16:44 +00:00
|
|
|
uint32touint8p(seq, buf+4);
|
2011-07-17 15:42:19 +00:00
|
|
|
uint32touint8p(id, buf+8);
|
2011-07-17 12:25:15 +00:00
|
|
|
|
|
|
|
buf[12]=0xff; // salt (0xffff always?)
|
|
|
|
buf[13]=0xff;
|
|
|
|
|
2011-07-19 07:59:16 +00:00
|
|
|
return nrf_snd_pkt_crc_encr(16,buf,useencryption?openbeaconkey:NULL);
|
2011-07-17 12:25:15 +00:00
|
|
|
}
|
|
|
|
|
2011-07-17 23:16:44 +00:00
|
|
|
uint8_t openbeaconSend(void)
|
2011-07-17 12:25:15 +00:00
|
|
|
{
|
2011-07-17 23:16:44 +00:00
|
|
|
uint8_t status;
|
2011-08-06 00:41:40 +00:00
|
|
|
|
|
|
|
nrf_config_get(&oldconfig);
|
|
|
|
|
2011-08-02 22:24:31 +00:00
|
|
|
nrf_set_channel(OPENBEACON_CHANNEL);
|
2011-07-17 18:32:17 +00:00
|
|
|
nrf_set_strength(strength);
|
2011-07-17 19:01:09 +00:00
|
|
|
nrf_set_tx_mac(sizeof(mac), mac);
|
|
|
|
|
2011-07-18 22:19:50 +00:00
|
|
|
status = openbeaconSendPacket(oid, seq, 0xFF, strength++);
|
2011-07-17 12:25:15 +00:00
|
|
|
if( strength == 4 )
|
|
|
|
strength = 0;
|
2011-07-23 21:47:42 +00:00
|
|
|
if( (seq++ & OPENBEACON_SAVE) == OPENBEACON_SAVE )
|
2011-07-18 22:19:50 +00:00
|
|
|
openbeaconSaveBlock();
|
2011-08-06 00:41:40 +00:00
|
|
|
nrf_config_set(&oldconfig);
|
2011-07-17 23:16:44 +00:00
|
|
|
return status;
|
2011-07-17 12:25:15 +00:00
|
|
|
}
|
2011-07-17 19:01:09 +00:00
|
|
|
|