From 2d8a81986f8861cd68430f98904a056b42cfd0e0 Mon Sep 17 00:00:00 2001 From: murata Date: Mon, 21 Mar 2022 18:35:07 +0900 Subject: [PATCH] AP_Hott_Telem: Console output can be disabled --- libraries/AP_Hott_Telem/AP_Hott_Telem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_Hott_Telem/AP_Hott_Telem.cpp b/libraries/AP_Hott_Telem/AP_Hott_Telem.cpp index 33ff29bf47..817dbd1030 100644 --- a/libraries/AP_Hott_Telem/AP_Hott_Telem.cpp +++ b/libraries/AP_Hott_Telem/AP_Hott_Telem.cpp @@ -73,7 +73,7 @@ void AP_Hott_Telem::init() if (!hal.scheduler->thread_create(FUNCTOR_BIND_MEMBER(&AP_Hott_Telem::loop, void), "Hott", 1024, AP_HAL::Scheduler::PRIORITY_BOOST, 1)) { - hal.console->printf("Failed to create Hott thread\n"); + DEV_PRINTF("Failed to create Hott thread\n"); } } }