Queues
Dependencies: ELEC350-Practicals-FZ429
Fork of Task631-mbedos54 by
Revision 7:cd015e83995a, committed 2016-03-14
- Comitter:
- noutram
- Date:
- Mon Mar 14 16:32:56 2016 +0000
- Parent:
- 6:2e463846b575
- Child:
- 8:c5663f5fa848
- Commit message:
- Added comments
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Mon Mar 14 16:30:25 2016 +0000
+++ b/main.cpp Mon Mar 14 16:32:56 2016 +0000
@@ -41,6 +41,9 @@
while (true) {
redLED = 1;
if (SW1 == 1) {
+
+ // 1) Select the 'type' of wait
+
//wait_ms(osWaitForever);
Thread::wait(osWaitForever);
} else {
@@ -61,8 +64,10 @@
//Main thread ID
tidMain = Thread::gettid();
- //Threads
Thread t1(thread1, NULL, osPriorityNormal);
+
+ // 2) Select the Thread Priority
+
//Thread t2(thread2, NULL, osPriorityNormal);
Thread t2(thread2, NULL, osPriorityAboveNormal);
