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