Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: EthernetInterface mbed-rtos
ExecutionContext.h
00001 #ifndef EXECUTION_CONTEXT_HEADER_INCLUDED 00002 #define EXECUTION_CONTEXT_HEADER_INCLUDED 00003 00004 #include <stdint.h> 00005 00006 extern "C" { 00007 typedef int8_t LifeCycleState; 00008 typedef int8_t ReturnValue_t; 00009 00010 void EC_init(int8_t); 00011 LifeCycleState EC_get_component_state(); 00012 ReturnValue_t EC_activate_component(); 00013 ReturnValue_t EC_deactivate_component(); 00014 ReturnValue_t EC_execute(); 00015 ReturnValue_t EC_error(); 00016 int8_t EC_get_type(); 00017 00018 extern void (*EC_start)(); 00019 extern void (*EC_suspend)(); 00020 extern void (*EC_resume)(); 00021 } 00022 00023 #endif // #ifndef EXECUTION_CONTEXT_HEADER_INCLDUED
Generated on Fri Jul 22 2022 21:22:49 by
1.7.2