mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-28 02:33:58 -04:00
AP_SerialManager: add support for SerialProtocol_IOMCU
This commit is contained in:
parent
e75f2ecf07
commit
d1f7695244
@ -585,7 +585,9 @@ void AP_SerialManager::init()
|
||||
AP_SERIALMANAGER_PPP_BUFSIZE_TX);
|
||||
break;
|
||||
#endif
|
||||
|
||||
case SerialProtocol_IOMCU:
|
||||
// nothing to do, AP_IOMCU handles this
|
||||
break;
|
||||
default:
|
||||
uart->begin(state[i].baudrate());
|
||||
}
|
||||
|
@ -86,6 +86,7 @@ public:
|
||||
// Reserving Serial Protocol 47 for SerialProtocol_IQ
|
||||
SerialProtocol_PPP = 48,
|
||||
SerialProtocol_IBUS_Telem = 49, // i-BUS telemetry data, ie via sensor port of FS-iA6B
|
||||
SerialProtocol_IOMCU = 50, // IOMCU
|
||||
SerialProtocol_NumProtocols // must be the last value
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user