Minor NRF cleanup.
[goodfet] / firmware / include / monitor.h
1 /*! \file monitor.h
2   \author Travis Goodspeed
3   \brief Debug monitor commands.
4 */
5
6 #ifdef MSP430
7 #include <signal.h>
8 #include <io.h>
9 #include <iomacros.h>
10 #endif
11
12 // Generic Commands
13
14 //! Overwrite all of RAM with 0xBEEF, then reboot.
15 void monitor_ram_pattern();
16 //! Return the number of contiguous bytes 0xBEEF, to measure RAM usage.
17 unsigned int monitor_ram_depth();
18