AP_SerialManager: move multiple RC input error to pre-arm failure

This commit is contained in:
Henry Wurzburg 2022-10-21 13:50:45 -05:00 committed by Andrew Tridgell
parent 16e21d42ee
commit 0fbc232c24
1 changed files with 2 additions and 3 deletions

View File

@ -543,11 +543,10 @@ void AP_SerialManager::init()
#ifndef HAL_BUILD_AP_PERIPH
case SerialProtocol_RCIN:
if (AP::RC().has_uart()) {
GCS_SEND_TEXT(MAV_SEVERITY_WARNING, "Duplicate RCIN configured on SERIAL%u", i);
} else {
if (!AP::RC().has_uart()) {
AP::RC().add_uart(uart);
}
break;
#endif