mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/rtos2-utils.git
synced 2025-06-10 18:15:59 +00:00
23 lines
264 B
C
23 lines
264 B
C
#ifndef STA_RTOS_C_API_STARTUP_H
|
|
#define STA_RTOS_C_API_STARTUP_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/**
|
|
* @brief
|
|
*
|
|
* @param arg Default task argument
|
|
*/
|
|
void startALPAKA(void * arg);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif // STA_RTOS_C_API_STARTUP_H
|