Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: aconno_I2C Lis2dh12 WatchdogTimer
NRFuart.h
- Committer:
- pathfindr
- Date:
- 2020-02-13
- Revision:
- 57:066dfbe8b4b9
- Parent:
- 36:8e359069192b
File content as of revision 57:066dfbe8b4b9:
#ifndef NRFUART_H_
#define NRFUART_H_
//------------------------------------------------------------------------------
//Dependencies
//------------------------------------------------------------------------------
#include "main.h"
//extern bool NRFuart_enabled;
extern void NRFuart_init_nohwfc();
extern void NRFuart_uninit();
extern void NRFuart_putc(char byte);
extern void NRFuart_puts(char* bytes);
extern char NRFuart_getc();
extern void NRFuart_flush();
extern bool NRFuart_readable();
extern void debug_prep();
extern void debug_exe();
#endif