X-Git-Url: http://git.droids-corp.org/?p=protos%2Fxbee-avr.git;a=blobdiff_plain;f=main.h;h=1ad2c0b901b70738ecb133c3606a325403a72eb4;hp=617628e922ac47f1659a15dbc24f620bf25683a0;hb=04735ee519979e772e94824304111369f6d01f2b;hpb=a4e51d8b2a5b13308d314aaf72e58672346dfb1f diff --git a/main.h b/main.h index 617628e..1ad2c0b 100644 --- a/main.h +++ b/main.h @@ -25,6 +25,26 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +#include "cmdline.h" +#include "callout.h" +#include "rc_proto.h" +#include "spi_servo.h" + +extern volatile uint16_t global_ms; + #define NB_LOGS 4 /** ERROR NUMS */ @@ -39,8 +59,15 @@ #define LED3_ON() sbi(PORTA, 0) #define LED3_OFF() cbi(PORTA, 0) +#define BUZZER_ON() sbi(PORTA, 4) +#define BUZZER_OFF() cbi(PORTA, 4) + +/* highest priority */ #define LED_PRIO 170 #define TIME_PRIO 160 +#define BEEP_PRIO 130 +#define SPI_PRIO 100 /* users of spi_servo must have lower prio */ +/* lowest priority */ #define MAX_POWER_LEVEL 5 /* generic to all boards */ @@ -78,8 +105,8 @@ extern struct callout_manager cm; void bootloader(void); -void xbee_rx(struct xbee_dev *dev, int channel, int type, - void *frame, unsigned len, void *opaque); +int8_t xbeeapp_rx(struct xbee_dev *dev, int channel, int type, + void *frame, unsigned len, void *opaque); int xbeeapp_send_atcmd(const char *atcmd_str, void *param, unsigned param_len, int foreground, int (*func)(void *frame, unsigned len, void *arg),