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.
main.cpp
00001 00002 #include "mbed.h" 00003 #include "led_tsk.h" 00004 00005 #define SCHEDULER_TASK_STACK_SIZE_EACH 1000 00006 #include "Scheduler.h" 00007 00008 Serial pc(USBTX, USBRX); 00009 00010 int main() 00011 { 00012 int i=0; 00013 pc.baud(115200); 00014 scheduler_startLoop( led1_task ); 00015 00016 while(1) { 00017 pc.printf("\n[%4d] Hello World ! / mbed ",i++); 00018 taskWait(1000); 00019 } 00020 00021 } 00022 00023 00024
Generated on Tue Jul 12 2022 17:41:02 by
1.7.2