Implementatie van de opdracht Round Robin

Dependencies:   C12832

Committer:
benboydens
Date:
Tue Nov 03 15:41:06 2020 +0000
Revision:
1:0016a14c76bb
Parent:
0:825bd2920b6d
Round Robin complete

Who changed what in which revision?

UserRevisionLine numberNew contents of line
benboydens 0:825bd2920b6d 1 /* mbed Microcontroller Library
benboydens 0:825bd2920b6d 2 * Copyright (c) 2019 ARM Limited
benboydens 0:825bd2920b6d 3 * SPDX-License-Identifier: Apache-2.0
benboydens 0:825bd2920b6d 4 */
benboydens 0:825bd2920b6d 5
benboydens 0:825bd2920b6d 6 #include "mbed.h"
benboydens 0:825bd2920b6d 7 #include "StateMachine.h"
benboydens 0:825bd2920b6d 8
benboydens 0:825bd2920b6d 9 int main()
benboydens 0:825bd2920b6d 10 {
benboydens 0:825bd2920b6d 11 StateMachine statemachine;
benboydens 0:825bd2920b6d 12 statemachine.start();
benboydens 0:825bd2920b6d 13 }