openchronos-ng
opensource firmware for the ez430 chronos
|
00001 // ************************************************************************************************* 00002 // 00003 // Actual revision: $Revision: $ 00004 // Revision label: $Name: $ 00005 // Revision state: $State: $ 00006 // 00007 // ************************************************************************************************* 00008 // Radio core access functions. Taken from TI reference code for CC430. 00009 // ************************************************************************************************* 00010 00011 // ************************************************************************************************* 00012 // Prototype section 00013 unsigned char Strobe(unsigned char strobe); 00014 unsigned char ReadSingleReg(unsigned char addr); 00015 void WriteSingleReg(unsigned char addr, unsigned char value); 00016 void ReadBurstReg(unsigned char addr, unsigned char *buffer, unsigned char count); 00017 void WriteBurstReg(unsigned char addr, unsigned char *buffer, unsigned char count); 00018 void ResetRadioCore(void); 00019 void WritePATable(unsigned char value); 00020 void WaitForXT2(void);