Dependencies:   C12832 Client

Committer:
thomasluca
Date:
Sat Nov 07 15:10:37 2020 +0000
Revision:
13:368c6181b81e
Parent:
11:d7b17df4c98a
Finished Ethernet + Round-Robin

Who changed what in which revision?

UserRevisionLine numberNew contents of line
okano 0:ce7a8546502b 1 #include "mbed.h"
thomasluca 13:368c6181b81e 2 #include "StateMachine.h"
okano 0:ce7a8546502b 3
thomasluca 11:d7b17df4c98a 4 int main()
okano 0:ce7a8546502b 5 {
thomasluca 13:368c6181b81e 6 StateMachine* statemachine;
thomasluca 13:368c6181b81e 7 statemachine->start();
thomasluca 13:368c6181b81e 8 delete statemachine;
okano 0:ce7a8546502b 9 }