pamoja for TypeScript - v0.1.17
    Preparing search index...

    Interface MavlinkFieldInfo

    One field of a message shape.

    interface MavlinkFieldInfo {
        arrayLen: number;
        extension: boolean;
        fieldType: number;
        name: string;
        offset: number;
        typeName: string;
    }
    Index
    arrayLen: number

    The element count for an array field, or 0 for a scalar.

    extension: boolean

    Whether this is a MAVLink 2 extension field.

    fieldType: number

    The field's type, one of the MAVLINK_FIELD_* codes.

    name: string

    The field name as the dialect writes it, such as custom_mode.

    offset: number

    The field's byte offset within the payload.

    typeName: string

    The field's type name as the dialect writes it, such as uint32_t.