#[unsafe(no_mangle)]pub unsafe extern "C" fn pamoja_mavlink_dialect_add(
dialect: *mut PamojaMavlinkDialect,
msgid: u32,
crc_extra: u8,
) -> PamojaStatusExpand description
Adds or replaces the CRC_EXTRA seed for a message id.
§Arguments
dialect- the table to extend.msgid- the message id.crc_extra- the seed, usually frompamoja_mavlink_message_crc_extra.
§Returns
PamojaStatus::Ok on success.
§Errors
Returns PamojaStatus::InvalidArgument if dialect is null.
§Safety
dialect must be a live dialect handle.