init

Dependencies:   aconno_I2C Lis2dh12 WatchdogTimer

Committer:
pathfindr
Date:
Mon Feb 17 23:24:52 2020 +0000
Revision:
58:8d4a354816b1
Parent:
36:8e359069192b
usb

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pathfindr 36:8e359069192b 1 #ifndef NRFUART_H_
pathfindr 36:8e359069192b 2 #define NRFUART_H_
pathfindr 36:8e359069192b 3
pathfindr 36:8e359069192b 4 //------------------------------------------------------------------------------
pathfindr 36:8e359069192b 5 //Dependencies
pathfindr 36:8e359069192b 6 //------------------------------------------------------------------------------
pathfindr 36:8e359069192b 7 #include "main.h"
pathfindr 36:8e359069192b 8
pathfindr 36:8e359069192b 9 //extern bool NRFuart_enabled;
pathfindr 36:8e359069192b 10 extern void NRFuart_init_nohwfc();
pathfindr 36:8e359069192b 11 extern void NRFuart_uninit();
pathfindr 36:8e359069192b 12 extern void NRFuart_putc(char byte);
pathfindr 36:8e359069192b 13 extern void NRFuart_puts(char* bytes);
pathfindr 36:8e359069192b 14 extern char NRFuart_getc();
pathfindr 36:8e359069192b 15 extern void NRFuart_flush();
pathfindr 36:8e359069192b 16 extern bool NRFuart_readable();
pathfindr 36:8e359069192b 17 extern void debug_prep();
pathfindr 36:8e359069192b 18 extern void debug_exe();
pathfindr 36:8e359069192b 19
pathfindr 36:8e359069192b 20 #endif