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.
Fork of rtos_2 by
Revision 7:14841d8f93e4, committed 2015-11-13
- Comitter:
- xiscosc
- Date:
- Fri Nov 13 14:41:24 2015 +0000
- Parent:
- 6:209f4db62daf
- Commit message:
- rtos2
Changed in this revision
diff -r 209f4db62daf -r 14841d8f93e4 main.cpp --- a/main.cpp Tue Jun 04 16:01:32 2013 +0100 +++ b/main.cpp Fri Nov 13 14:41:24 2015 +0000 @@ -1,21 +1,43 @@ #include "mbed.h" #include "rtos.h" - DigitalOut led1(LED1); DigitalOut led2(LED2); - -void led2_thread(void const *args) { +double status; +Timer t; +bool b; + +void thread1(void const *args) { while (true) { - led2 = !led2; - Thread::wait(1000); + t.stop(); + if (b) { + printf("The time taken was %f seconds \r\n", t.read()); + b = false; + } + t.reset(); + led1 = !led1; + for(double i=0; i<100000; i++) { + status = i; + } + led1 = !led1; + Thread::wait(300); + } } + + +int main() { + led1 = false; + led2 = false; + b = true; + osThreadSetPriority(osThreadGetId(),osPriorityHigh); + Thread my_thread1(thread1, NULL, osPriorityHigh); + while (true) { + t.reset(); + t.start(); + led2 = !led2; + for(double i=0; i<100000; i++) { + status = i; + } + led2 = !led2; + Thread::wait(300); + } } - -int main() { - Thread thread(led2_thread); - - while (true) { - led1 = !led1; - Thread::wait(500); - } -}
diff -r 209f4db62daf -r 14841d8f93e4 mbed-rtos.lib --- a/mbed-rtos.lib Tue Jun 04 16:01:32 2013 +0100 +++ b/mbed-rtos.lib Fri Nov 13 14:41:24 2015 +0000 @@ -1,1 +1,1 @@ -https://mbed.org/users/mbed_official/code/mbed-rtos/ \ No newline at end of file +https://mbed.org/users/mbed_official/code/mbed-rtos/#6d90423c236e
diff -r 209f4db62daf -r 14841d8f93e4 mbed.bld --- a/mbed.bld Tue Jun 04 16:01:32 2013 +0100 +++ b/mbed.bld Fri Nov 13 14:41:24 2015 +0000 @@ -1,1 +1,1 @@ -http://mbed.org/users/mbed_official/code/mbed/builds/ \ No newline at end of file +http://mbed.org/users/mbed_official/code/mbed/builds/9296ab0bfc11 \ No newline at end of file