optimizations - release

This commit is contained in:
Philippe G
2021-05-10 19:41:56 -07:00
parent 0f792d71ee
commit 8c0e766cd7
4 changed files with 7 additions and 7 deletions

View File

@@ -353,7 +353,7 @@ bool sb_displayer_init(void) {
// create displayer management task
displayer.mutex = xSemaphoreCreateMutex();
displayer.task = xTaskCreateStatic( (TaskFunction_t) displayer_task, "displayer_thread", SCROLL_STACK_SIZE, NULL, ESP_TASK_PRIO_MIN + 1, xStack, &xTaskBuffer);
displayer.task = xTaskCreateStatic( (TaskFunction_t) displayer_task, "squeeze_displayer", SCROLL_STACK_SIZE, NULL, ESP_TASK_PRIO_MIN + 1, xStack, &xTaskBuffer);
// chain handlers
slimp_handler_chain = slimp_handler;