This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
fsfw_example_public/bsp_stm32_rtems/init.c

15 lines
277 B
C

#include "RTEMSConfig.h"
extern int main();
/**
* Entry point for the RTEMS BSP after low level and RTEMS executive initialization.
* @param argument
* @return
*/
rtems_task Init(rtems_task_argument argument) {
main();
return (void) rtems_task_delete( RTEMS_SELF );
}