github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/storm32/message_frsky_passthrough_array.go (about) 1 //autogenerated:yes 2 //nolint:revive,misspell,govet,lll 3 package storm32 4 5 // Frsky SPort passthrough multi packet container. 6 type MessageFrskyPassthroughArray struct { 7 // Timestamp (time since system boot). 8 TimeBootMs uint32 9 // Number of passthrough packets in this message. 10 Count uint8 11 // Passthrough packet buffer. A packet has 6 bytes: uint16_t id + uint32_t data. The array has space for 40 packets. 12 PacketBuf [240]uint8 13 } 14 15 // GetID implements the message.Message interface. 16 func (*MessageFrskyPassthroughArray) GetID() uint32 { 17 return 60040 18 }