increase lmic task prio

This commit is contained in:
cyberman54 2022-02-13 18:41:43 +01:00
parent 8f98a9bdde
commit 4d48b14b88
2 changed files with 2 additions and 2 deletions

View File

@ -305,7 +305,7 @@ esp_err_t lmic_init(void) {
"lmictask", // name of task
4096, // stack size of task
(void *)1, // parameter of the task
1, // priority of the task
2, // priority of the task
&lmicTask, // task handle
1); // CPU core

View File

@ -29,7 +29,7 @@ Task Core Prio Purpose
-------------------------------------------------------------------------------
ledloop* 1 1 blinks LEDs
spiloop# 0 2 reads/writes data on spi interface
lmictask* 1 1 MCCI LMiC LORAWAN stack
lmictask* 1 2 MCCI LMiC LORAWAN stack
clockloop# 1 6 generates realtime telegrams for external clock
mqttloop# 1 5 reads/writes data on ETH interface
timesync_proc# 1 7 processes realtime time sync requests