init

Dependencies:   VL53L1X Map

main.cpp

Committer:
bcostm
Date:
2017-11-23
Revision:
2:35f13b7f3659
Parent:
0:5701b41769fd
Child:
3:bb074b1d26fe

File content as of revision 2:35f13b7f3659:

#include "mbed.h"

void print_char(char c = '*')
{
    printf("%c", c);
    fflush(stdout);
}

Thread thread;

DigitalOut led1(LED1);

void print_thread()
{
    while (true) {
        wait(1);
        print_char();
    }
}

int main()
{
    printf("\n\n*** RTOS basic example ***\n");

    thread.start(print_thread);

    while (true) {
        led1 = !led1;
        wait(0.5);
    }
}