- fixed missing include in beagle_client example

pull/535/head
Michael Zillgith 11 months ago
parent c0b0d10346
commit 9c1709c2bb

@ -5,7 +5,7 @@
*/
#include "iec61850_client.h"
#include "hal_thread.h"
#include <stdlib.h>
#include <stdio.h>
@ -64,6 +64,7 @@ int main(int argc, char **argv)
goto control_error;
if (!ControlObjectClient_operate(controlLED1, ctlValOn, 0))
goto control_error;
Thread_sleep(1000);
if (!ControlObjectClient_operate(controlLED1, ctlValOff, 0))
@ -81,6 +82,7 @@ int main(int argc, char **argv)
if (!ControlObjectClient_operate(controlLED3, ctlValOn, 0))
goto control_error;
Thread_sleep(1000);
if (led4State == false)

Loading…
Cancel
Save