| Line No. | Rev | Author | Line |
|---|---|---|---|
| 1 | 6 | kaklik | /*! \file radiot96.h \brief DataRadio T96-SR Radio Driver. */ |
| 2 | //***************************************************************************** |
||
| 3 | // |
||
| 4 | // File Name : 'radiot96.h' |
||
| 5 | // Title : DataRadio T96-SR Radio Driver |
||
| 6 | // Author : Pascal Stang - Copyright (C) 2003 |
||
| 7 | // Created : 09/01/2003 |
||
| 8 | // Revised : 09/03/2003 |
||
| 9 | // Version : 0.1 |
||
| 10 | // Target MCU : Atmel AVR Series |
||
| 11 | // Editor Tabs : 4 |
||
| 12 | // |
||
| 13 | // This code is distributed under the GNU Public License |
||
| 14 | // which can be found at http://www.gnu.org/licenses/gpl.txt |
||
| 15 | // |
||
| 16 | //***************************************************************************** |
||
| 17 | |||
| 18 | #ifndef RADIOT96_H |
||
| 19 | #define RADIOT96_H |
||
| 20 | |||
| 21 | // Radio PTT |
||
| 22 | #define RADIO_PTT_DDR DDRD |
||
| 23 | #define RADIO_PTT_PORT PORTD |
||
| 24 | #define RADIO_PTT_PIN PD7 |
||
| 25 | |||
| 26 | #define RADIO_PPT_DELAYMS 100 |
||
| 27 | |||
| 28 | #define COMM_UART 1 |
||
| 29 | |||
| 30 | // functions |
||
| 31 | void radioInit(void); |
||
| 32 | void radioSend(u08 status, u08 type, u08 datalength, u08* dataptr); |
||
| 33 | cBuffer* radioGetRxBuffer(void); |
||
| 34 | |||
| 35 | #endif |
Powered by WebSVN v2.8.3