AP_OSD: use message with static assert

This commit is contained in:
Andy Piper 2023-06-14 12:41:24 -04:00 committed by Peter Barker
parent 1b10008e38
commit e06952bf0f
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ static const char* SERIAL_PROTOCOL_VALUES[] = {
"GEN", "WNCH", "MSP", "DJI", "AIRSPD", "ADSB", "AHRS", "AUDIO", "FETTEC", "TORQ",
"AIS", "CD_ESC", "MSP_DP", "MAV_HL", "TRAMP", "DDS"
};
static_assert(AP_SerialManager::SerialProtocol_NumProtocols == ARRAY_SIZE(SERIAL_PROTOCOL_VALUES));
static_assert(AP_SerialManager::SerialProtocol_NumProtocols == ARRAY_SIZE(SERIAL_PROTOCOL_VALUES), "Wrong size SerialProtocol_NumProtocols");
static const char* SERVO_FUNCTIONS[] = {
"NONE", "RCPASS", "FLAP", "FLAP_AUTO", "AIL", "", "MNT_PAN", "MNT_TLT", "MNT_RLL", "MNT_OPEN",