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

     1  //autogenerated:yes
     2  //nolint:revive,misspell,govet,lll,dupl,gocritic
     3  package all
     4  
     5  import (
     6  	"github.com/bluenviron/gomavlib/v2/pkg/dialects/development"
     7  )
     8  
     9  // RADIO_RC_CHANNELS flags (bitmask).
    10  type RADIO_RC_CHANNELS_FLAGS = development.RADIO_RC_CHANNELS_FLAGS
    11  
    12  const (
    13  	// Failsafe is active. The content of the RC channels data in the RADIO_RC_CHANNELS message is implementation dependent.
    14  	RADIO_RC_CHANNELS_FLAGS_FAILSAFE RADIO_RC_CHANNELS_FLAGS = development.RADIO_RC_CHANNELS_FLAGS_FAILSAFE
    15  	// Channel data may be out of date. This is set when the receiver is unable to validate incoming data from the transmitter and has therefore resent the last valid data it received.
    16  	RADIO_RC_CHANNELS_FLAGS_OUTDATED RADIO_RC_CHANNELS_FLAGS = development.RADIO_RC_CHANNELS_FLAGS_OUTDATED
    17  )