AP_Networking: make connector loopback test priority to be PRIORITY_IO-1

This commit is contained in:
bugobliterator 2024-10-15 12:22:14 +08:00 committed by Andrew Tridgell
parent 55d8267f3b
commit bd7bb59021
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ void AP_Networking::start_tests(void)
if (param.tests & TEST_CONNECTOR_LOOPBACK) {
hal.scheduler->thread_create(FUNCTOR_BIND_MEMBER(&AP_Networking::test_connector_loopback, void),
"connector_loopback",
8192, AP_HAL::Scheduler::PRIORITY_UART, -1);
8192, AP_HAL::Scheduler::PRIORITY_IO, -1);
}
}