Update stack size

For some reason ETH_IRQ handler was not enabled
Everything seems to be working
This commit is contained in:
2023-12-01 18:42:41 +01:00
parent 06468f20a0
commit 2d1a51ea04
5 changed files with 25 additions and 2 deletions

View File

@@ -147,7 +147,7 @@ int main(void) {
/* Create the thread(s) */
/* definition and creation of app */
osThreadDef(app, app_main, osPriorityNormal, 0, 128);
osThreadDef(app, app_main, osPriorityNormal, 0, 1024);
appHandle = osThreadCreate(osThread(app), NULL);
/* USER CODE BEGIN RTOS_THREADS */