goodwatch/firmware/monitor.h
Travis Goodspeed b702e12fe1 Failed attempt at #56.
UART monitor can now transmit packets. #55
Cleanups to the beacon. #53
2017-12-10 12:27:40 -05:00

11 lines
261 B
C

/*! \file monitor.h
\brief Debugging commands, often received over UART.
*/
//! Handle a monitor command.
int monitor_handle(uint8_t *buffer, int len);
//! Handles packet arrival, like an application would.
void monitor_packetrx(uint8_t *packet, int len);