Skip to content

Commit

Permalink
tuned tasks stacks
Browse files Browse the repository at this point in the history
  • Loading branch information
David B Brown committed Mar 30, 2021
1 parent 94bfa5a commit a90d9cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ void temperature_sensor_task(void *_args) {
}

void temperature_sensor_init() {
xTaskCreate(temperature_sensor_task, "Temperature", 512, NULL, tskIDLE_PRIORITY+1, NULL);
xTaskCreate(temperature_sensor_task, "Temperature", 256, NULL, tskIDLE_PRIORITY+1, NULL);
}


Expand Down Expand Up @@ -244,7 +244,7 @@ void light_sensor_task(void *_args) {
}

void light_sensor_init() {
xTaskCreate(light_sensor_task, "Light Sensor", 512, NULL, tskIDLE_PRIORITY+1, NULL);
xTaskCreate(light_sensor_task, "Light Sensor", 256, NULL, tskIDLE_PRIORITY+1, NULL);
}

void multi_sensor_init (){
Expand Down

0 comments on commit a90d9cc

Please sign in to comment.