uart.h
00001 #ifndef UART_H
00002 #define UART_H
00003
00004 #include "contiki-conf.h"
00005 #include "banked.h"
00006
00007 #include "cc2430_sfr.h"
00008
00009 void uart0_init(uint32_t speed) __banked;
00010 void uart0_writeb(uint8_t byte);
00011
00012 void uart0_set_input(int (*input)(unsigned char c));
00013
00014 void uart0_rxISR( void ) __interrupt (URX0_VECTOR);
00015 void uart0_txISR( void ) __interrupt (UTX0_VECTOR);
00016
00017 void uart1_init(uint32_t speed) __banked;
00018 void uart1_writeb(uint8_t byte);
00019
00020 void uart1_set_input(int (*input)(unsigned char c));
00021
00022 void uart1_rxISR( void ) __interrupt (URX1_VECTOR);
00023 void uart1_txISR( void ) __interrupt (UTX1_VECTOR);
00024
00025 #endif