Skip to content
This repository has been archived by the owner on Jul 1, 2018. It is now read-only.

Commit

Permalink
Shrink radio config thread stack size
Browse files Browse the repository at this point in the history
  • Loading branch information
cduck committed Nov 6, 2014
1 parent c2a595f commit 62b4f41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controller/src/radio_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ BaseType_t radioConfigInit() {
// Get updates from smart sensor protocol
registerSensorUpdateCallback(&sensorUpdateCallback);
*/
return xTaskCreate(radioConfigTask, "Radio Config", 2048, NULL,
return xTaskCreate(radioConfigTask, "Radio Config", 256, NULL,
tskIDLE_PRIORITY, NULL);
}

Expand Down

0 comments on commit 62b4f41

Please sign in to comment.