demo versie 16/05

Dependencies:   EthernetInterface mbed-rto mbed

Fork of ProjectVLC by Klaas Govaerts

main.cpp

Committer:
KlaasGovaerts
Date:
2018-05-02
Revision:
43:b69c7baa5d31
Parent:
38:47c075a354b5
Child:
44:bb1d9d8a9fe4

File content as of revision 43:b69c7baa5d31:

#include "mbed.h"
#include "rtos.h"
#include "Interpreter.h"
#include "TCPlistener.h"
#include "Receiver.h"
#include "LEDDriver.h"

void receive(Queue<int,8>* queue){
    printf("receive executed.\r\n");
    Receiver receiver(queue);
    receiver.start();
}

void LEDStart(Queue<int,8>* queue)
{
    printf("LEDStart executed.\r\n");
    LEDDriver driver = LEDDriver(queue);
    driver.run(8);    
} 

int main (void){
        printf("main executed.\r\n");
        Queue<int,8> queue;
        Thread threadeth;
        Thread driverThread;
        while(true){
            threadeth.start(receive,&queue);
            driverThread.start(LEDStart,&queue);
        }       
}