AP_HAL_ChibiOS: use GCS_SEND_TEXT()

This commit is contained in:
Andrew Tridgell 2020-03-30 09:49:53 +11:00
parent 4f591a338f
commit 9350c78023

View File

@ -216,7 +216,7 @@ void RCInput::_timer_tick(void)
#ifndef HAL_NO_UARTDRIVER
if (rc_protocol && rc_protocol != last_protocol) {
last_protocol = rc_protocol;
gcs().send_text(MAV_SEVERITY_DEBUG, "RCInput: decoding %s", last_protocol);
GCS_SEND_TEXT(MAV_SEVERITY_DEBUG, "RCInput: decoding %s", last_protocol);
}
#endif