mbed-os
Fork of mbed-os by
features/unsupported/tests/mbed/reset/main.cpp
- Committer:
- xuaner
- Date:
- 2017-07-20
- Revision:
- 1:3deb71413561
- Parent:
- 0:f269e3021894
File content as of revision 1:3deb71413561:
#include "mbed.h" #if !DEVICE_SEMIHOST #error [NOT_SUPPORTED] Semihost not supported #endif Serial pc(USBTX, USBRX); extern "C" void mbed_reset(); int main() { pc.printf("start\n"); wait(1); unsigned int counter = 0; while(1) { pc.printf("%u\n",counter++); wait(1); mbed_reset(); } }