Skip to content
Snippets Groups Projects
Commit 556a1df6 authored by Damien George's avatar Damien George
Browse files

esp8266/ets_alt_task: Make FIRST_PRIO=0 to cover all task priorities.

FIRST_PRIO=2 works but using 0 is hopefully safer, and can anyway be
optimised in the future.
parent 9d7b871f
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ static void (*idle_cb)(void *);
static void *idle_arg;
#if ESP_SDK_VERSION >= 010500
# define FIRST_PRIO 3
# define FIRST_PRIO 0
#else
# define FIRST_PRIO 0x14
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment