X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=shellcode%2Fchipcon%2Fcc1110%2Freflexframe.c;h=421f669e609937ea47a1668b3f66048d28787751;hp=0ca561dbd5ab31c85f063174c47a75ef89facd6f;hb=bd935167cc7fed70c58110beb0b5ee12d56935e8;hpb=8f3ecaa2ecd27948480534d866f9c686fa14a019 diff --git a/shellcode/chipcon/cc1110/reflexframe.c b/shellcode/chipcon/cc1110/reflexframe.c index 0ca561d..421f669 100644 --- a/shellcode/chipcon/cc1110/reflexframe.c +++ b/shellcode/chipcon/cc1110/reflexframe.c @@ -3,63 +3,169 @@ char __xdata at 0xfe00 packet[256] ; -void sleepMillis(int ms) { - int j; - while (--ms > 0) { - for (j=0; j<1200;j++); // about 1 millisecond - }; +char __xdata at 0xfdf0 cfg[5] ; +//! Save MDMCFG* +void save_settings(){ + cfg[0]=MDMCFG0; + cfg[1]=MDMCFG1; + cfg[2]=MDMCFG2; + cfg[3]=MDMCFG3; + cfg[4]=MDMCFG4; + +} +//! Restore MDMCFG* +void restore_settings(){ + MDMCFG0=cfg[0]; + MDMCFG1=cfg[1]; + MDMCFG2=cfg[2]; + MDMCFG3=cfg[3]; + MDMCFG4=cfg[4]; } -//! Wait for a packet to come, then immediately return. -void rxwait(){ - //Disable interrupts. - RFTXRXIE=0; +void carrier(){ + // Set the system clock source to HS XOSC and max CPU speed, + // ref. [clk]=>[clk_xosc.c] + SLEEP &= ~SLEEP_OSC_PD; + while( !(SLEEP & SLEEP_XOSC_S) ); + CLKCON = (CLKCON & ~(CLKCON_CLKSPD | CLKCON_OSC)) | CLKSPD_DIV_1; + while (CLKCON & CLKCON_OSC); + SLEEP |= SLEEP_OSC_PD; + + + /* Setup radio with settings from SmartRF® Studio. The default settings are + * used, except that "unmodulated" is chosen in the "Simple RX tab". This + * results in an umodulated carrier with a frequency of approx. 2.433 GHz. + */ + //FSCTRL1 = 0x0A; // Frequency synthesizer control. + //FSCTRL0 = 0x00; // Frequency synthesizer control. + - //idle a bit. - RFST=RFST_SIDLE; - while(MARCSTATE!=MARC_STATE_IDLE); + MDMCFG4 = 0x86; // Modem configuration. + MDMCFG3 = 0x83; // Modem configuration. + MDMCFG2 = 0x30; // Modem configuration. + MDMCFG1 = 0x22; // Modem configuration. + MDMCFG0 = 0xF8; // Modem configuration. - //Begin to receive. - RFST=RFST_SRX; - while(MARCSTATE!=MARC_STATE_RX); + /* Settings not from SmartRF® Studio. Setting both sync word registers to + * 0xAA = 0b10101010, i.e., the same as the preamble pattern. Not necessary, + * but gives control of what the radio attempts to transmit. + */ + + //These sync values are better for jamming, but they break reception. + //SYNC1 = 0xAA; + //SYNC0 = 0xAA; + +#define RFON RFST = RFST_SIDLE; RFST = RFST_STX; while ((MARCSTATE & MARCSTATE_MARC_STATE) != MARC_STATE_TX); +#define RFOFF RFST = RFST_SIDLE; //while ((MARCSTATE & MARCSTATE_MARC_STATE) != MARC_STATE_IDLE); + //RFON; + //while(1); - //Incoming! Return to let the jammer handle things. } + +void sleepMillis(int ms) { + int j; + while (--ms > 0) { + for (j=0; j<1200;j++); // about 1 millisecond + }; +} + + //! Reflexively jam on the present channel by responding to a signal with a carrier wave. void main(){ unsigned char threshold=packet[0], i=0, rssi=0;; - //Disable interrupts. RFTXRXIE=0; - //idle a bit. - //RFST=RFST_SIDLE; - //while(MARCSTATE!=MARC_STATE_IDLE); - + save_settings(); + + //carrier(); + + while(1){ + //idle a bit. + RFST=RFST_SIDLE; + while(MARCSTATE!=MARC_STATE_IDLE); + + restore_settings(); + //idle a bit, unecessary + //RFST=RFST_SFSTXON; + //while(MARCSTATE!=MARC_STATE_FSTXON); + + //sleepMillis(5); rxwait(); + //idle w/ oscillator + //RFST=RFST_SFSTXON; + //while(MARCSTATE!=MARC_STATE_FSTXON); + + //HALT; + //sleepMillis(500); + //HALT; + + //RFOFF; + + //SYNC1=0xAA; + //SYNC0=0xAA; + + //Transmit carrier for 10ms + carrier(); + RFON; + + sleepMillis(200); + + //sleepMillis(20); + //HALT; + } +} + +//! Receives a packet out of the radio from 0xFE00. +void rxwait(){ + unsigned char len=16, i=0; + + do{ + //1-out the buffer. + for(i=0;i<64;i++) + packet[i]=0xFF; + i=0; + + //Disable interrupts. + RFTXRXIE=0; + //idle a bit. RFST=RFST_SIDLE; while(MARCSTATE!=MARC_STATE_IDLE); - SYNC1=0xAA; - SYNC0=0xAA; + //Begin to receive. + RFST=RFST_SRX; + while(MARCSTATE!=MARC_STATE_RX); - //Transmit carrier for 10ms - RFST=RFST_STX; - while(MARCSTATE!=MARC_STATE_TX); - sleepMillis(20); + if(PKTCTRL0&1){ + //auto length + while(i