2011-07-27 13:41:18 +00:00
|
|
|
#include <sysinit.h>
|
|
|
|
|
|
|
|
#include "basic/basic.h"
|
2011-07-29 20:30:36 +00:00
|
|
|
#include "basic/byteorder.h"
|
2011-07-27 13:41:18 +00:00
|
|
|
|
|
|
|
#include "lcd/lcd.h"
|
|
|
|
#include "lcd/print.h"
|
|
|
|
|
|
|
|
#include "funk/nrf24l01p.h"
|
2011-07-27 16:22:53 +00:00
|
|
|
#include "usbcdc/usb.h"
|
|
|
|
#include "usbcdc/usbcore.h"
|
|
|
|
#include "usbcdc/usbhw.h"
|
|
|
|
#include "usbcdc/cdcuser.h"
|
|
|
|
#include "usbcdc/cdc_buf.h"
|
2011-07-27 17:03:25 +00:00
|
|
|
#include "usbcdc/util.h"
|
2011-07-27 13:41:18 +00:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2011-07-29 20:30:36 +00:00
|
|
|
#define REMOTE_CHANNEL 91
|
|
|
|
#define REMOTE_MAC "REM0T"
|
|
|
|
#define MESH_CHANNEL 85
|
|
|
|
#define MESH_MAC "MESHB"
|
2011-07-27 17:03:25 +00:00
|
|
|
#define BEACON_CHANNEL 81
|
|
|
|
#define BEACON_MAC "\x1\x2\x3\x2\1"
|
|
|
|
|
2011-07-29 20:30:36 +00:00
|
|
|
uint32_t const beaconkey[4] = {
|
|
|
|
0xB4595344,0xD3E119B6,0xA814D0EC,0xEFF5A24E
|
|
|
|
};
|
|
|
|
uint32_t remotekey[4] = {
|
|
|
|
0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff
|
2011-07-27 17:03:25 +00:00
|
|
|
};
|
2011-07-29 20:30:36 +00:00
|
|
|
uint32_t meshkey[4] = {
|
|
|
|
0x0, 0x0, 0x0, 0x0
|
|
|
|
};
|
|
|
|
|
2011-07-27 17:03:25 +00:00
|
|
|
|
2011-07-27 13:41:18 +00:00
|
|
|
#if CFG_USBMSC
|
2011-07-27 16:22:53 +00:00
|
|
|
#error "MSC is defined"
|
2011-07-27 13:41:18 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !CFG_USBCDC
|
2011-07-27 16:22:53 +00:00
|
|
|
#error "CDC is not defined"
|
2011-07-27 13:41:18 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
2011-07-29 20:30:36 +00:00
|
|
|
uint32_t thekey[4] = { 0x0, 0x0, 0x0, 0x0 };
|
2011-07-27 13:41:18 +00:00
|
|
|
|
2011-07-29 20:30:36 +00:00
|
|
|
struct NRF_CFG config = {
|
|
|
|
.channel= BEACON_CHANNEL,
|
|
|
|
.txmac= BEACON_MAC,
|
|
|
|
.nrmacs=1,
|
|
|
|
.mac0= BEACON_MAC,
|
|
|
|
.maclen ="\x10",
|
2011-07-27 13:41:18 +00:00
|
|
|
};
|
|
|
|
|
2011-07-29 20:30:36 +00:00
|
|
|
int process(char * input);
|
2011-07-27 13:41:18 +00:00
|
|
|
|
2011-07-29 20:30:36 +00:00
|
|
|
#define INPUTLEN 99
|
|
|
|
void dwim(void){
|
|
|
|
char input[INPUTLEN+1];
|
|
|
|
int inputptr=0;
|
2011-07-30 01:26:59 +00:00
|
|
|
char dirty=0;
|
2011-07-27 13:41:18 +00:00
|
|
|
|
2011-07-29 20:30:36 +00:00
|
|
|
usbCDCInit();
|
|
|
|
delayms(500);
|
|
|
|
getInputWaitRelease();
|
|
|
|
puts("D start\r\n");
|
2011-07-27 13:41:18 +00:00
|
|
|
|
2011-07-29 20:30:36 +00:00
|
|
|
while(!getInputRaw()){
|
2011-07-27 13:41:18 +00:00
|
|
|
|
2011-07-29 20:30:36 +00:00
|
|
|
// Input
|
|
|
|
int l=INPUTLEN-inputptr;
|
|
|
|
CDC_OutBufAvailChar (&l);
|
2011-07-27 17:03:25 +00:00
|
|
|
|
2011-07-29 20:30:36 +00:00
|
|
|
if(l>0){
|
2011-07-30 01:26:59 +00:00
|
|
|
dirty=10;
|
|
|
|
if(l>1)
|
|
|
|
dirty=50;
|
2011-07-29 20:30:36 +00:00
|
|
|
CDC_RdOutBuf (input+inputptr, &l);
|
2011-07-30 01:26:59 +00:00
|
|
|
if(input[inputptr]==8){
|
|
|
|
inputptr=0;
|
|
|
|
puts("<oops>\r\n");
|
|
|
|
continue;
|
|
|
|
};
|
2011-07-29 20:30:36 +00:00
|
|
|
input[inputptr+l]=0;
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus(&input[inputptr]);
|
2011-07-29 20:30:36 +00:00
|
|
|
for(int i=0;i<l;i++){
|
2011-07-30 09:43:08 +00:00
|
|
|
if(input[inputptr+i] =='\r' || input[inputptr+i] =='\n'){
|
2011-07-29 20:30:36 +00:00
|
|
|
input[inputptr+i]=0;
|
|
|
|
process(input);
|
|
|
|
if(i<l)
|
|
|
|
memmove(input,input+inputptr+i+1,l-i);
|
|
|
|
inputptr=-i-1;
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
};
|
2011-07-30 01:26:59 +00:00
|
|
|
}else{
|
|
|
|
delayms(1);
|
|
|
|
if(dirty>0)
|
|
|
|
dirty--;
|
|
|
|
if(dirty==1)
|
|
|
|
puts("");
|
2011-07-29 20:30:36 +00:00
|
|
|
};
|
|
|
|
inputptr+=l;
|
2011-07-27 17:03:25 +00:00
|
|
|
};
|
|
|
|
|
2011-07-29 20:30:36 +00:00
|
|
|
puts("D exit\r\n");
|
|
|
|
}
|
2011-07-27 13:41:18 +00:00
|
|
|
|
2011-07-30 01:26:59 +00:00
|
|
|
#define BUFLEN 32
|
|
|
|
#define NYB(x) ((x>'9')?(x|0x20)-'a'+10:x-'0')
|
|
|
|
uint8_t * hextobyte(char * input, int *len){
|
|
|
|
static uint8_t buf[BUFLEN];
|
|
|
|
|
|
|
|
int p=0;
|
|
|
|
int bp=0;
|
|
|
|
char c;
|
|
|
|
while(bp<BUFLEN){
|
|
|
|
if(input[p]==0 || input[p+1]==0)
|
|
|
|
break;
|
|
|
|
if(input[p]==' '){
|
|
|
|
p++;
|
|
|
|
continue;
|
|
|
|
};
|
|
|
|
buf[bp]= c=NYB(input[p])*16+NYB(input[p+1]);
|
|
|
|
bp++;p+=2;
|
|
|
|
};
|
|
|
|
*len=bp;
|
|
|
|
return buf;
|
|
|
|
};
|
|
|
|
|
2011-07-29 20:30:36 +00:00
|
|
|
int process(char * input){
|
|
|
|
if(input == NULL || input[0]==0)
|
2011-07-30 01:26:59 +00:00
|
|
|
return -1;
|
2011-07-27 17:03:25 +00:00
|
|
|
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus("\r\n");
|
|
|
|
puts_plus("D [");
|
|
|
|
puts_plus(input);
|
2011-07-29 20:30:36 +00:00
|
|
|
puts("]\r\n");
|
2011-07-27 17:03:25 +00:00
|
|
|
|
2011-07-29 20:30:36 +00:00
|
|
|
if(input[0]=='i'){
|
|
|
|
nrf_init();
|
|
|
|
nrf_config_set(&config);
|
|
|
|
}else if(input[0]=='c'){
|
|
|
|
if(input[1]=='m'){
|
|
|
|
config.channel=MESH_CHANNEL;
|
|
|
|
memcpy(config.txmac,MESH_MAC,5);
|
|
|
|
memcpy(config.mac0,MESH_MAC,5);
|
|
|
|
config.maclen[0]=0x20;
|
|
|
|
config.nrmacs=1;
|
|
|
|
nrf_config_set(&config);
|
|
|
|
memcpy(thekey,meshkey,sizeof(thekey));
|
|
|
|
}else if(input[1]=='r'){
|
|
|
|
config.channel=REMOTE_CHANNEL;
|
|
|
|
memcpy(config.txmac,REMOTE_MAC,5);
|
|
|
|
memcpy(config.mac0,REMOTE_MAC,5);
|
|
|
|
config.maclen[0]=0x10;
|
|
|
|
config.nrmacs=1;
|
|
|
|
nrf_config_set(&config);
|
|
|
|
memcpy(thekey,remotekey,sizeof(thekey));
|
|
|
|
}else if(input[1]=='b'){
|
|
|
|
config.channel=BEACON_CHANNEL;
|
|
|
|
memcpy(config.txmac,BEACON_MAC,5);
|
|
|
|
memcpy(config.mac0,BEACON_MAC,5);
|
|
|
|
config.maclen[0]=0x10;
|
|
|
|
config.nrmacs=1;
|
|
|
|
nrf_config_set(&config);
|
|
|
|
memcpy(thekey,beaconkey,sizeof(thekey));
|
|
|
|
}else if(input[1]=='?'){
|
|
|
|
nrf_config_get(&config);
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus("Ch: ");puts_plus(IntToStrX( config.channel,2 )); puts_plus("\r\n");
|
2011-07-27 17:03:25 +00:00
|
|
|
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus("TxMac: ");
|
2011-07-29 20:30:36 +00:00
|
|
|
for(int i=0;i<5;i++)
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus(IntToStrX( config.txmac[i],2 ));
|
|
|
|
puts_plus("\r\n");
|
2011-07-27 17:03:25 +00:00
|
|
|
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus("Len : ");
|
2011-07-29 20:30:36 +00:00
|
|
|
for(int i=0;i<5;i++)
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus(IntToStrX( config.maclen[i],2 ));
|
|
|
|
puts_plus("\r\n");
|
2011-07-27 17:03:25 +00:00
|
|
|
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus("0mac : ");
|
2011-07-29 20:30:36 +00:00
|
|
|
for(int i=0;i<5;i++)
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus(IntToStrX( config.mac0[i],2 ));
|
|
|
|
puts_plus("\r\n");
|
2011-07-27 17:03:25 +00:00
|
|
|
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus("1mac : ");
|
2011-07-29 20:30:36 +00:00
|
|
|
for(int i=0;i<5;i++)
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus(IntToStrX( config.mac1[i],2 ));
|
|
|
|
puts_plus("\r\n");
|
2011-07-27 17:03:25 +00:00
|
|
|
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus("2345 : ");
|
2011-07-29 20:30:36 +00:00
|
|
|
for(int i=0;i<4;i++)
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus(IntToStrX( config.mac2345[i],2 ));
|
|
|
|
puts_plus("\r\n");
|
2011-07-29 20:30:36 +00:00
|
|
|
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus("key : ");
|
2011-07-29 20:30:36 +00:00
|
|
|
for(int i=0;i<4;i++){
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus(IntToStrX( thekey[i],8 ));
|
|
|
|
puts_plus(" ");
|
2011-07-29 20:30:36 +00:00
|
|
|
};
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus("\r\n");
|
|
|
|
};
|
|
|
|
}else if(input[0]=='C'){
|
|
|
|
int len;
|
|
|
|
uint8_t *hex=hextobyte(&input[2],&len);
|
|
|
|
if(input[1]=='k'){
|
|
|
|
thekey[0]=uint8ptouint32(hex);
|
|
|
|
thekey[1]=uint8ptouint32(hex+4);
|
|
|
|
thekey[2]=uint8ptouint32(hex+8);
|
|
|
|
thekey[3]=uint8ptouint32(hex+12);
|
|
|
|
}else if(input[1]=='m'){
|
|
|
|
config.mac0[0]=uint8ptouint32(hex);
|
|
|
|
config.mac0[1]=uint8ptouint32(hex+4);
|
|
|
|
config.mac0[2]=uint8ptouint32(hex+8);
|
|
|
|
config.mac0[3]=uint8ptouint32(hex+12);
|
|
|
|
config.mac0[4]=uint8ptouint32(hex+16);
|
|
|
|
nrf_config_set(&config);
|
|
|
|
}else if(input[1]=='t'){
|
|
|
|
config.txmac[0]=uint8ptouint32(hex);
|
|
|
|
config.txmac[1]=uint8ptouint32(hex+4);
|
|
|
|
config.txmac[2]=uint8ptouint32(hex+8);
|
|
|
|
config.txmac[3]=uint8ptouint32(hex+12);
|
|
|
|
config.txmac[4]=uint8ptouint32(hex+16);
|
|
|
|
nrf_config_set(&config);
|
|
|
|
}else if(input[1]=='c'){
|
|
|
|
config.channel=*hex;
|
|
|
|
nrf_config_set(&config);
|
2011-07-27 17:03:25 +00:00
|
|
|
};
|
2011-07-29 20:30:36 +00:00
|
|
|
}else if (input[0]=='s'){
|
|
|
|
__attribute__ ((aligned (4))) uint8_t buf[32];
|
|
|
|
int status=0;
|
2011-07-30 01:26:59 +00:00
|
|
|
int len;
|
2011-07-30 09:43:08 +00:00
|
|
|
int idx=1;
|
|
|
|
char ctr=1;
|
|
|
|
char debug=0;
|
|
|
|
if(input[idx]=='d'){
|
|
|
|
debug=1;
|
|
|
|
idx++;
|
|
|
|
};
|
|
|
|
if(input[idx]=='+'){
|
|
|
|
ctr=10;
|
|
|
|
idx++;
|
|
|
|
};
|
2011-07-29 20:30:36 +00:00
|
|
|
|
2011-07-30 09:43:08 +00:00
|
|
|
if (input[idx]==' '){
|
|
|
|
uint8_t *hex=hextobyte(&input[idx],&len);
|
|
|
|
if(len<10) len=10; // minmal packet length?
|
|
|
|
len+=2; // Add crc!
|
2011-07-29 20:30:36 +00:00
|
|
|
|
2011-07-30 09:43:08 +00:00
|
|
|
memcpy(buf,hex,len);
|
|
|
|
status=nrf_snd_pkt_crc_encr(len,buf,thekey);
|
2011-07-29 20:30:36 +00:00
|
|
|
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus("P ");
|
|
|
|
puts_plus("[");puts_plus(IntToStrX(len,2));puts_plus("] ");
|
2011-07-30 09:43:08 +00:00
|
|
|
if(debug){
|
|
|
|
for(int i=0;i<len;i++){
|
|
|
|
puts_plus(IntToStrX( buf[i],2 ));
|
|
|
|
puts_plus(" ");
|
|
|
|
};
|
|
|
|
};
|
|
|
|
puts("\r\n");
|
|
|
|
|
|
|
|
while(--ctr>0){
|
|
|
|
delayms(23);
|
|
|
|
memcpy(buf,hex,len);
|
|
|
|
status=nrf_snd_pkt_crc_encr(len,buf,thekey);
|
2011-07-29 20:30:36 +00:00
|
|
|
};
|
|
|
|
}else if (input[1]=='t'){
|
|
|
|
static int ctr=1;
|
|
|
|
int status;
|
2011-07-27 17:03:25 +00:00
|
|
|
|
2011-07-29 20:30:36 +00:00
|
|
|
buf[0]=0x10; // Length: 16 bytes
|
|
|
|
buf[1]='1'; // Proto
|
|
|
|
buf[2]=0x00;
|
|
|
|
buf[3]=0x00; // Unused
|
|
|
|
|
|
|
|
uint32touint8p(ctr++,buf+4);
|
|
|
|
|
|
|
|
uint32touint8p(0x5ec,buf+8);
|
|
|
|
|
|
|
|
buf[12]=0xff; // salt (0xffff always?)
|
|
|
|
buf[13]=0xff;
|
|
|
|
status=nrf_snd_pkt_crc_encr(16,buf,thekey);
|
|
|
|
}else{
|
|
|
|
};
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus("S state=");
|
|
|
|
puts_plus(IntToStrX( status,2 ));
|
|
|
|
puts_plus("\r\n");
|
2011-07-29 20:30:36 +00:00
|
|
|
}else if (input[0]=='r'){
|
|
|
|
__attribute__ ((aligned (4))) uint8_t buf[32];
|
|
|
|
int len;
|
|
|
|
int pctr=5;
|
|
|
|
int t=getTimer()+5000/SYSTICKSPEED;
|
|
|
|
|
2011-07-30 01:26:59 +00:00
|
|
|
if(input[1]=='+'){
|
|
|
|
if(input[2]!=0){
|
|
|
|
uint8_t *hex=hextobyte(&input[2],&len);
|
|
|
|
t=getTimer()+hex[0]*1000/SYSTICKSPEED;
|
|
|
|
};
|
2011-07-29 20:30:36 +00:00
|
|
|
pctr=-1;
|
2011-07-30 01:26:59 +00:00
|
|
|
}
|
|
|
|
if(input[1]=='-'){
|
|
|
|
uint8_t *hex=hextobyte(&input[2],&len);
|
|
|
|
pctr=hex[0];
|
|
|
|
}
|
2011-07-29 20:30:36 +00:00
|
|
|
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus("D receive ...\r\n");
|
2011-07-29 20:30:36 +00:00
|
|
|
nrf_rcv_pkt_start();
|
|
|
|
do{
|
|
|
|
len=nrf_rcv_pkt_poll_dec(sizeof(buf),buf,thekey);
|
|
|
|
// Receive
|
|
|
|
if(len==0||len==-1||len==-2){ //No pkt, Pkt2large, NoPktError
|
|
|
|
delayms(10);
|
|
|
|
continue;
|
|
|
|
};
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus("R ");
|
|
|
|
puts_plus("[");puts_plus(IntToStrX(len,2));puts_plus("] ");
|
|
|
|
if(len==-3){
|
|
|
|
puts_plus("[!crc] ");
|
|
|
|
len=16;
|
|
|
|
};
|
2011-07-29 20:30:36 +00:00
|
|
|
for(int i=0;i<len;i++){
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus(IntToStrX( buf[i],2 ));
|
|
|
|
puts_plus(" ");
|
|
|
|
};
|
|
|
|
if(pctr<0){
|
|
|
|
int l=0;
|
|
|
|
CDC_OutBufAvailChar (&l);
|
|
|
|
if(l>0){
|
|
|
|
puts_plus("\r\nD Abort.\r\n");
|
|
|
|
break;
|
|
|
|
};
|
2011-07-29 20:30:36 +00:00
|
|
|
};
|
|
|
|
puts("\r\n");
|
|
|
|
if(pctr--==0)
|
|
|
|
break;
|
|
|
|
}while(t>getTimer());
|
|
|
|
|
|
|
|
nrf_rcv_pkt_end();
|
|
|
|
}else{
|
2011-07-30 01:26:59 +00:00
|
|
|
puts_plus("D no action\r\n");
|
2011-07-29 20:30:36 +00:00
|
|
|
};
|
|
|
|
puts("D done.\r\n");
|
|
|
|
return 0;
|
2011-07-27 13:41:18 +00:00
|
|
|
};
|