some fixes and firmware stabilization

This commit is contained in:
sharandac
2020-08-06 17:31:40 +02:00
parent 7876f35e39
commit 4f22ef3c24
26 changed files with 1646 additions and 967 deletions

View File

@@ -26,6 +26,7 @@
#include "gui/sound/snd_start.h"
#include "gui/sound/snd_signal.h"
EventGroupHandle_t sound_event_handle = NULL;
TaskHandle_t _sound_Task;
void sound_Task( void * pvParameters );
@@ -63,6 +64,8 @@ void sound_setup( void ) {
while (true);
}
sound_event_handle = xEventGroupCreate();
xTaskCreate( sound_Task, /* Function to implement the task */
"sound Task", /* Name of the task */
2000, /* Stack size in words */