Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: SemihostedFileSystem mbed
main.cpp
00001 #include "mbed.h" 00002 #include "SemihostedFileSystem.h" 00003 00004 DigitalOut led(LED1); 00005 00006 int main() 00007 { 00008 SemihostedFileHandle semi_stdout(":tt", O_WRONLY); 00009 int i = 0; 00010 while(1) { 00011 semi_stdout.printf("Hello world %d\n", i++); 00012 led = (i % 2); 00013 wait_ms(1000); 00014 } 00015 }
Generated on Mon Jul 18 2022 17:38:03 by
1.7.2