2011-07-13 21:03:40 +00:00
|
|
|
#include "rftransfer.h"
|
|
|
|
#include "nrf24l01p.h"
|
|
|
|
#include <basic/basic.h>
|
|
|
|
#include <core/systick/systick.h>
|
|
|
|
|
2011-07-13 22:13:16 +00:00
|
|
|
#define MAXPACKET 30
|
2011-07-13 21:03:40 +00:00
|
|
|
void rftransfer_send(uint16_t size, uint8_t *data)
|
|
|
|
{
|
2011-07-13 22:13:16 +00:00
|
|
|
uint8_t buf[MAXPACKET];
|
2011-07-13 21:03:40 +00:00
|
|
|
buf[0] = 'L';
|
|
|
|
buf[1] = size >> 8;
|
|
|
|
buf[2] = size & 0xFF;
|
|
|
|
|
|
|
|
uint16_t rand = 5; //random_rand16();
|
|
|
|
buf[3] = rand >> 8;
|
|
|
|
buf[4] = rand & 0xFF;
|
|
|
|
|
2011-07-16 17:12:35 +00:00
|
|
|
//nrf_snd_pkt_crc(5,buf); //setup packet
|
|
|
|
nrf_snd_pkt_crc(30,buf); //setup packet
|
2011-07-13 22:13:16 +00:00
|
|
|
delayms(10);
|
2011-07-13 21:03:40 +00:00
|
|
|
uint16_t index = 0;
|
|
|
|
uint8_t i;
|
2011-07-13 22:13:16 +00:00
|
|
|
uint16_t crc = crc16(data,size);
|
|
|
|
|
2011-07-13 21:03:40 +00:00
|
|
|
while(size){
|
|
|
|
buf[0] = 'D';
|
|
|
|
buf[1] = index >> 8;
|
|
|
|
buf[2] = index & 0xFF;
|
|
|
|
buf[3] = rand >> 8;
|
|
|
|
buf[4] = rand & 0xFF;
|
2011-07-13 22:13:16 +00:00
|
|
|
for(i=5; i<MAXPACKET && size>0; i++,size--){
|
2011-07-13 21:03:40 +00:00
|
|
|
buf[i] = *data++;
|
|
|
|
}
|
|
|
|
index++;
|
2011-07-16 17:12:35 +00:00
|
|
|
//nrf_snd_pkt_crc(i,buf); //data packet
|
|
|
|
nrf_snd_pkt_crc(30,buf); //setup packet
|
2011-07-13 22:13:16 +00:00
|
|
|
delayms(10);
|
2011-07-13 21:03:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
buf[0] = 'C';
|
|
|
|
buf[1] = crc >> 8;
|
|
|
|
buf[2] = crc & 0xFF;
|
|
|
|
buf[3] = rand >> 8;
|
|
|
|
buf[4] = rand & 0xFF;
|
2011-07-16 17:12:35 +00:00
|
|
|
//nrf_snd_pkt_crc(5,buf); //crc packet
|
|
|
|
nrf_snd_pkt_crc(30,buf); //setup packet
|
2011-07-13 22:13:16 +00:00
|
|
|
delayms(10);
|
2011-07-13 21:03:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t rftransfer_receive(uint8_t *buffer, uint16_t maxlen, uint16_t timeout)
|
|
|
|
{
|
2011-07-13 22:13:16 +00:00
|
|
|
uint8_t buf[MAXPACKET];
|
2011-07-13 21:03:40 +00:00
|
|
|
uint8_t state = 0;
|
|
|
|
uint16_t pos = 0, seq = 0, size = 0, rand = 0, crc = 0;
|
|
|
|
int n,i;
|
|
|
|
unsigned int currentTick = systickGetTicks();
|
|
|
|
unsigned int startTick = currentTick;
|
|
|
|
|
|
|
|
while(currentTick < (startTick+timeout) ){//this fails if either overflows
|
2011-07-13 22:13:16 +00:00
|
|
|
n = nrf_rcv_pkt_time(10, MAXPACKET, buf);
|
2011-07-13 21:03:40 +00:00
|
|
|
switch(state){
|
|
|
|
case 0:
|
|
|
|
if( n == 5 && buf[0] == 'L' ){
|
|
|
|
size = (buf[1] << 8) | buf[2];
|
|
|
|
rand = (buf[3] << 8) | buf[4];
|
|
|
|
seq = 0;
|
|
|
|
pos = 0;
|
|
|
|
if( size <= maxlen )
|
|
|
|
state = 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
if( n > 5 && buf[0] == 'D' && ((buf[3]<<8)|buf[4])==rand ){
|
|
|
|
if( seq == ((buf[1]<<8)|buf[2]) ){
|
|
|
|
if( (pos + n - 5)<maxlen ){
|
|
|
|
for(i=5; i<n; i++,pos++){
|
|
|
|
buffer[pos] = buf[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( pos == size ){
|
|
|
|
crc = crc16(buffer, size);
|
|
|
|
state = 2;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if( n == 5 && buf[0] == 'C' && ((buf[3]<<8)|buf[4])==rand){
|
|
|
|
if( crc == ((buf[1]<<8)|buf[2]) ){
|
|
|
|
return size;
|
|
|
|
}else{
|
|
|
|
state = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|