
Library set up as dummy module on mbed to mimic Nordic.
uart1.h
- Committer:
- Stephen_NewVistas
- Date:
- 2016-12-12
- Revision:
- 0:226550611f0d
File content as of revision 0:226550611f0d:
#ifndef UART1_ #define UART1_ #include "comms.h" #ifdef __cplusplus extern "C" { #endif void init_uart1(void); int uart1_is_char(void); int uart1_get_char(void); void send_uart1_char(unsigned char c); #ifdef __cplusplus } #endif #endif