github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/common/message_open_drone_id_arm_status.go (about)

     1  //autogenerated:yes
     2  //nolint:revive,misspell,govet,lll
     3  package common
     4  
     5  // Transmitter (remote ID system) is enabled and ready to start sending location and other required information. This is streamed by transmitter. A flight controller uses it as a condition to arm.
     6  type MessageOpenDroneIdArmStatus struct {
     7  	// Status level indicating if arming is allowed.
     8  	Status MAV_ODID_ARM_STATUS `mavenum:"uint8"`
     9  	// Text error message, should be empty if status is good to arm. Fill with nulls in unused portion.
    10  	Error string `mavlen:"50"`
    11  }
    12  
    13  // GetID implements the message.Message interface.
    14  func (*MessageOpenDroneIdArmStatus) GetID() uint32 {
    15  	return 12918
    16  }