2024-11-09 07:30:12 +00:00

23 lines
361 B
C

#ifndef STA_TACOS_C_API_STARTUP_H
#define STA_TACOS_C_API_STARTUP_H
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Entry point for TACOS. Initializes all activated features and starts associated tasks.
*
* @param arg Passed on default task argument
*/
void startTACOS(void * arg);
#ifdef __cplusplus
}
#endif
#endif // STA_TACOS_C_API_STARTUP_H