Added use of startup.cpp

This commit is contained in:
@CarlWachter 2023-08-30 13:46:42 +02:00
parent 42cd501a99
commit 7c46e30161

View File

@ -126,6 +126,13 @@ void MX_FREERTOS_Init(void) {
void StartDefaultTask(void *argument)
{
/* USER CODE BEGIN StartDefaultTask */
#define STA_RTOS_SYSTEM_EVENTS_ENABLE
#define STA_RTOS_WATCHDOG_ENABLE
extern void startALPAKA(void *);
startALPAKA(argument);
/* Infinite loop */
for(;;)
{