Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1199 | killagreg | 1 | #ifndef _DSL_H |
2 | #define _DSL_H |
||
3 | |||
4 | #include <inttypes.h> |
||
5 | |||
1201 | killagreg | 6 | extern uint8_t dsl_RSSI; // Received signal strength indicator |
7 | extern uint8_t dsl_Battery; // Battery voltage (0-255 [0V - 8.2V]) |
||
8 | extern uint8_t dsl_Allocation; // Frequency allocation (35,40,72) |
||
1199 | killagreg | 9 | |
1201 | killagreg | 10 | #define USART1_BAUD 38400 |
1199 | killagreg | 11 | // this function should be called within the UART RX ISR |
12 | extern void dsl_parser(uint8_t c); |
||
13 | |||
14 | #endif //_DSL_H |
||
15 |