1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-13 05:53:06 +01:00

#63: increase iic task stack size to 4000

This commit is contained in:
andreas
2024-03-22 18:02:47 +01:00
parent 8bbe1fd192
commit 41b629e17b

View File

@@ -102,7 +102,7 @@ void initIicTask(GwApi *api){
if ((*it)->preinit(api)) addTask=true;
}
if (addTask){
api->addUserTask(runIicTask,"iicTask",3000);
api->addUserTask(runIicTask,"iicTask",4000);
}
#endif
}