AP_HAL_ChibiOS: fix CAN thread name

This commit is contained in:
Francisco Ferreira 2018-02-28 00:04:10 +00:00 committed by Randy Mackay
parent 146143ff2e
commit e4382c2232

View File

@ -309,7 +309,7 @@ void Scheduler::_timer_thread(void *arg)
void Scheduler::_uavcan_thread(void *arg)
{
Scheduler *sched = (Scheduler *)arg;
sched->_rcin_thread_ctx->name = "apm_uavcan";
sched->_uavcan_thread_ctx->name = "apm_uavcan";
while (!sched->_hal_initialized) {
sched->delay_microseconds(20000);
}