basic rtos example

main.cpp

Committer:
sarahmarshy
Date:
2017-06-23
Revision:
11:012b1294c1c4
Parent:
10:dc33cd3f4eb9

File content as of revision 11:012b1294c1c4:

#include "mbed.h"
 
DigitalOut led1(LED1);
DigitalOut led2(LED2);
Thread thread;
 
void led2_thread() {
    while (true) {
        led2 = !led2;
        wait(1);
    }
}
 
int main() {
    thread.start(led2_thread);
    
    while (true) {
        led1 = !led1;
        wait(0.5);
    }
}