Expand memory for OBPSensortask from 4k to 8k

This commit is contained in:
norbert-walter 2023-08-23 21:46:29 +02:00
parent e5f945fc3c
commit 9bfe455206
1 changed files with 1 additions and 1 deletions

View File

@ -578,6 +578,6 @@ void sensorTask(void *param){
void createSensorTask(SharedData *shared){ void createSensorTask(SharedData *shared){
xTaskCreate(sensorTask,"readSensors",4000,shared,3,NULL); xTaskCreate(sensorTask,"readSensors",8000,shared,3,NULL);
} }
#endif #endif