forked from poelzi/OpenChronos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrf1a.h
20 lines (19 loc) · 1009 Bytes
/
rf1a.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// *************************************************************************************************
//
// Actual revision: $Revision: $
// Revision label: $Name: $
// Revision state: $State: $
//
// *************************************************************************************************
// Radio core access functions. Taken from TI reference code for CC430.
// *************************************************************************************************
// *************************************************************************************************
// Prototype section
unsigned char Strobe(unsigned char strobe);
unsigned char ReadSingleReg(unsigned char addr);
void WriteSingleReg(unsigned char addr, unsigned char value);
void ReadBurstReg(unsigned char addr, unsigned char *buffer, unsigned char count);
void WriteBurstReg(unsigned char addr, unsigned char *buffer, unsigned char count);
void ResetRadioCore (void);
void WritePATable(unsigned char value);
void WaitForXT2(void);