mirror of https://github.com/ArduPilot/ardupilot
AP_HAL_ESP32: added PRIORITY_NET
This commit is contained in:
parent
936bbeda88
commit
bfcb8f361e
|
@ -164,8 +164,9 @@ bool Scheduler::thread_create(AP_HAL::MemberProc proc, const char *name, uint32_
|
|||
{ PRIORITY_RCIN, RCIN_PRIO},
|
||||
{ PRIORITY_IO, IO_PRIO},
|
||||
{ PRIORITY_UART, UART_PRIO},
|
||||
{ PRIORITY_NET, WIFI_PRIO1},
|
||||
{ PRIORITY_STORAGE, STORAGE_PRIO},
|
||||
{ PRIORITY_SCRIPTING, IO_PRIO},
|
||||
{ PRIORITY_SCRIPTING, UART_PRIO},
|
||||
};
|
||||
for (uint8_t i=0; i<ARRAY_SIZE(priority_map); i++) {
|
||||
if (priority_map[i].base == base) {
|
||||
|
|
Loading…
Reference in New Issue