Library set up as dummy module on mbed to mimic Nordic.

Dependencies:   mbed-rtos mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers uart1.h Source File

uart1.h

00001 #ifndef UART1_
00002 #define UART1_
00003 
00004 #include "comms.h"
00005 
00006 #ifdef __cplusplus
00007 extern "C" {
00008 #endif
00009 
00010 void init_uart1(void);
00011 int uart1_is_char(void);
00012 int uart1_get_char(void);
00013 void send_uart1_char(unsigned char c);
00014 
00015 #ifdef __cplusplus
00016 }
00017 #endif
00018 
00019 #endif