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

     1  //autogenerated:yes
     2  //nolint:revive,misspell,govet,lll
     3  package development
     4  
     5  // Detected WiFi network status information. This message is sent per each WiFi network detected in range with known SSID and general status parameters.
     6  type MessageWifiNetworkInfo struct {
     7  	// Name of Wi-Fi network (SSID).
     8  	Ssid string `mavlen:"32"`
     9  	// WiFi network operating channel ID. Set to 0 if unknown or unidentified.
    10  	ChannelId uint8
    11  	// WiFi network signal quality.
    12  	SignalQuality uint8
    13  	// WiFi network data rate. Set to UINT16_MAX if data_rate information is not supplied.
    14  	DataRate uint16
    15  	// WiFi network security type.
    16  	Security WIFI_NETWORK_SECURITY `mavenum:"uint8"`
    17  }
    18  
    19  // GetID implements the message.Message interface.
    20  func (*MessageWifiNetworkInfo) GetID() uint32 {
    21  	return 298
    22  }