summaryrefslogtreecommitdiff
path: root/code/esp32/components/eos/fe310.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/esp32/components/eos/fe310.c')
-rw-r--r--code/esp32/components/eos/fe310.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/code/esp32/components/eos/fe310.c b/code/esp32/components/eos/fe310.c
index a3552f9..b13d653 100644
--- a/code/esp32/components/eos/fe310.c
+++ b/code/esp32/components/eos/fe310.c
@@ -161,8 +161,9 @@ void eos_fe310_init(void) {
assert(ret==ESP_OK);
eos_msgq_init(&send_q, send_q_array, EOS_FE310_SIZE_Q);
- mutex = xSemaphoreCreateMutex();
- xTaskCreate(&worker, "fe310_receiver", 4096, NULL, 5, NULL);
+ mutex = xSemaphoreCreateBinary();
+ xSemaphoreGive(mutex);
+ xTaskCreatePinnedToCore(&worker, "fe310_receiver", 4096, NULL, 5, NULL, 1);
}
int eos_fe310_send(unsigned char cmd, unsigned char *buffer, uint16_t len) {