|
@ -80,7 +80,7 @@ void Led::setup(void) { |
|
|
xTaskCreate( |
|
|
xTaskCreate( |
|
|
&cTaskWrapper, /* Task function. */ |
|
|
&cTaskWrapper, /* Task function. */ |
|
|
"ledAnimationTask", /* String with name of task. */ |
|
|
"ledAnimationTask", /* String with name of task. */ |
|
|
2048, /* Stack size in words. */ |
|
|
1024, /* Stack size in words. */ |
|
|
this, /* Parameter passed as input of the task */ |
|
|
this, /* Parameter passed as input of the task */ |
|
|
tskIDLE_PRIORITY+3, /* Priority of the task. */ |
|
|
tskIDLE_PRIORITY+3, /* Priority of the task. */ |
|
|
&ledTaskHandle); /* Task handle. */ |
|
|
&ledTaskHandle); /* Task handle. */ |
|
|