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 Task622Solution-mbedos54 by
Revision 9:c46e831f8e4a, committed 2017-04-03
- Comitter:
- noutram
- Date:
- Mon Apr 03 14:02:26 2017 +0000
- Parent:
- 8:b28defacd894
- Commit message:
- updated for mbed os 5.4
Changed in this revision
--- a/main.cpp Mon Mar 14 19:48:38 2016 +0000
+++ b/main.cpp Mon Apr 03 14:02:26 2017 +0000
@@ -6,8 +6,8 @@
#define SWITCH1_RELEASE 1
-void thread1( const void* );
-void thread2( const void* );
+void thread1();
+void thread2();
void switchISR();
//Digital outputs
@@ -40,7 +40,7 @@
}
//High priority thread
-void thread1( const void* arg )
+void thread1()
{
redLED = 1;
while (true) {
@@ -54,7 +54,7 @@
}
//This thread has normal priority
-void thread2( const void* arg )
+void thread2()
{
greenLED = 1;
while (true) {
@@ -72,9 +72,12 @@
greenLED = 0;
//Threads
- t1 = new Thread(&thread1, NULL, osPriorityRealtime);
- t2 = new Thread(&thread2, NULL, osPriorityNormal);
-
+ t1 = new Thread(osPriorityRealtime);
+ t2 = new Thread(osPriorityNormal);
+
+ t1->start(thread1);
+ t2->start(thread2);
+
// Thread IDs
tidMain = Thread::gettid();
tid1 = t1->gettid();
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed-os.lib Mon Apr 03 14:02:26 2017 +0000 @@ -0,0 +1,1 @@ +https://github.com/ARMmbed/mbed-os/#50b3418e45484ebf442b88cd935a2d5355402d7d
--- a/mbed-rtos.lib Mon Mar 14 19:48:38 2016 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -http://mbed.org/users/mbed_official/code/mbed-rtos/#b4c5542476ba
--- a/mbed.bld Mon Mar 14 19:48:38 2016 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -http://mbed.org/users/mbed_official/code/mbed/builds/252557024ec3 \ No newline at end of file