Subversion Repositories FlightCtrl

Compare Revisions

Ignore whitespace Rev 1200 → Rev 1201

/branches/V0.72p Code Redesign killagreg/dsl.h
3,15 → 3,11
 
#include <inttypes.h>
 
// Received signal strength indicator
extern uint8_t dsl_RSSI;
extern uint8_t dsl_RSSI; // Received signal strength indicator
extern uint8_t dsl_Battery; // Battery voltage (0-255 [0V - 8.2V])
extern uint8_t dsl_Allocation; // Frequency allocation (35,40,72)
 
// Battery voltage (0-255 [0V - 8.2V])
extern uint8_t dsl_Battery;
 
// Frequency allocation (35,40,72)
extern uint8_t dsl_Allocation;
 
#define USART1_BAUD 38400
// this function should be called within the UART RX ISR
extern void dsl_parser(uint8_t c);