mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 16:59:57 +00:00
b702e12fe1
UART monitor can now transmit packets. #55 Cleanups to the beacon. #53
11 lines
261 B
C
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);
|