This is a monitor program which can see some mbed running conditions such a memory contents, time (if RTC set up), CPU information and others.

Dependencies:   mbed

main.cpp

Committer:
kenjiArai
Date:
2010-05-15
Revision:
0:4aaeaab8334a

File content as of revision 0:4aaeaab8334a:

//-------------------------------------------------------------------------------------------------------------------
// Sample to use Monitor program Ver.1
//      (c)2010  Kenji Arai / JH1PJL 
//      http://www.page.sannet.ne.jp/kenjia/index.html
//      http://mbed.org/users/kenjiArai/   
//          May 15th,2010  Started
//          May 15th,2010
//--------------------------------------------------------------------------------------------------------------------
#include "mbed.h"

extern int mon ( void);

int main ( void ){
    while (1){
        mon();
    }
}