Subversion Repositories FlightCtrl

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

#ifndef _DSL_H
#define _DSL_H

#include <inttypes.h>

// Received signal strength indicator
extern volatile uint8_t dsl_RSSI;

// Battery voltage (0-255 [0V - 8.2V])
extern uint8_t dsl_battery;

// Frequency allocation (35,40,72)
extern uint8_t dsl_allocation;

// this function should be called within the UART RX ISR
extern void dsl_parser(uint8_t c);

#endif //_DSL_H