2016-11-07 10:04:22 +00:00
|
|
|
#pragma once
|
|
|
|
|
// MESSAGE CAMERA_SETTINGS PACKING
|
|
|
|
|
|
|
|
|
|
#define MAVLINK_MSG_ID_CAMERA_SETTINGS 260
|
|
|
|
|
|
|
|
|
|
MAVPACKED(
|
|
|
|
|
typedef struct __mavlink_camera_settings_t {
|
|
|
|
|
uint32_t time_boot_ms; /*< Timestamp (milliseconds since system boot)*/
|
2017-09-11 17:32:44 +08:00
|
|
|
float aperture; /*< Aperture is 1/value*/
|
|
|
|
|
float shutter_speed; /*< Shutter speed in seconds*/
|
|
|
|
|
float iso_sensitivity; /*< ISO sensitivity*/
|
|
|
|
|
float ev; /*< Exposure Value*/
|
|
|
|
|
float white_balance; /*< Color temperature in degrees Kelvin. (0: Auto WB)*/
|
|
|
|
|
uint8_t camera_id; /*< Camera ID (1 for first, 2 for second, etc.)*/
|
|
|
|
|
uint8_t exposure_mode; /*< 0: full auto 1: full manual 2: aperture priority 3: shutter priority*/
|
|
|
|
|
uint8_t mode_id; /*< Reserved for a camera mode ID. (0: Photo 1: Video)*/
|
|
|
|
|
uint8_t audio_recording; /*< Audio recording enabled (0: off 1: on)*/
|
|
|
|
|
uint8_t color_mode_id; /*< Reserved for a color mode ID (Neutral, Vivid, etc.)*/
|
|
|
|
|
uint8_t image_format_id; /*< Reserved for image format ID (Jpeg/Raw/Jpeg+Raw)*/
|
|
|
|
|
uint8_t image_quality_id; /*< Reserved for image quality ID (Compression)*/
|
|
|
|
|
uint8_t metering_mode_id; /*< Reserved for metering mode ID (Average, Center, Spot, etc.)*/
|
|
|
|
|
uint8_t flicker_mode_id; /*< Reserved for flicker mode ID (Auto, 60Hz, 50Hz, etc.)*/
|
|
|
|
|
uint8_t photo_resolution_id; /*< Photo resolution ID (4000x3000, 2560x1920, etc.)*/
|
|
|
|
|
uint8_t video_resolution_and_rate_id; /*< Video resolution and rate ID (4K 60 Hz, 4K 30 Hz, HD 60 Hz, HD 30 Hz, etc.)*/
|
2016-11-07 10:04:22 +00:00
|
|
|
}) mavlink_camera_settings_t;
|
|
|
|
|
|
2017-09-11 17:32:44 +08:00
|
|
|
#define MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN 35
|
|
|
|
|
#define MAVLINK_MSG_ID_CAMERA_SETTINGS_MIN_LEN 35
|
|
|
|
|
#define MAVLINK_MSG_ID_260_LEN 35
|
|
|
|
|
#define MAVLINK_MSG_ID_260_MIN_LEN 35
|
2016-11-07 10:04:22 +00:00
|
|
|
|
2017-09-11 17:32:44 +08:00
|
|
|
#define MAVLINK_MSG_ID_CAMERA_SETTINGS_CRC 147
|
|
|
|
|
#define MAVLINK_MSG_ID_260_CRC 147
|
2016-11-07 10:04:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if MAVLINK_COMMAND_24BIT
|
|
|
|
|
#define MAVLINK_MESSAGE_INFO_CAMERA_SETTINGS { \
|
|
|
|
|
260, \
|
|
|
|
|
"CAMERA_SETTINGS", \
|
2017-09-11 17:32:44 +08:00
|
|
|
17, \
|
2016-11-07 10:04:22 +00:00
|
|
|
{ { "time_boot_ms", NULL, MAVLINK_TYPE_UINT32_T, 0, 0, offsetof(mavlink_camera_settings_t, time_boot_ms) }, \
|
2017-09-11 17:32:44 +08:00
|
|
|
{ "camera_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 24, offsetof(mavlink_camera_settings_t, camera_id) }, \
|
|
|
|
|
{ "exposure_mode", NULL, MAVLINK_TYPE_UINT8_T, 0, 25, offsetof(mavlink_camera_settings_t, exposure_mode) }, \
|
|
|
|
|
{ "aperture", NULL, MAVLINK_TYPE_FLOAT, 0, 4, offsetof(mavlink_camera_settings_t, aperture) }, \
|
|
|
|
|
{ "shutter_speed", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_camera_settings_t, shutter_speed) }, \
|
|
|
|
|
{ "iso_sensitivity", NULL, MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_camera_settings_t, iso_sensitivity) }, \
|
|
|
|
|
{ "ev", NULL, MAVLINK_TYPE_FLOAT, 0, 16, offsetof(mavlink_camera_settings_t, ev) }, \
|
|
|
|
|
{ "white_balance", NULL, MAVLINK_TYPE_FLOAT, 0, 20, offsetof(mavlink_camera_settings_t, white_balance) }, \
|
|
|
|
|
{ "mode_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 26, offsetof(mavlink_camera_settings_t, mode_id) }, \
|
|
|
|
|
{ "audio_recording", NULL, MAVLINK_TYPE_UINT8_T, 0, 27, offsetof(mavlink_camera_settings_t, audio_recording) }, \
|
|
|
|
|
{ "color_mode_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 28, offsetof(mavlink_camera_settings_t, color_mode_id) }, \
|
|
|
|
|
{ "image_format_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 29, offsetof(mavlink_camera_settings_t, image_format_id) }, \
|
|
|
|
|
{ "image_quality_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 30, offsetof(mavlink_camera_settings_t, image_quality_id) }, \
|
|
|
|
|
{ "metering_mode_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 31, offsetof(mavlink_camera_settings_t, metering_mode_id) }, \
|
|
|
|
|
{ "flicker_mode_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 32, offsetof(mavlink_camera_settings_t, flicker_mode_id) }, \
|
|
|
|
|
{ "photo_resolution_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 33, offsetof(mavlink_camera_settings_t, photo_resolution_id) }, \
|
|
|
|
|
{ "video_resolution_and_rate_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 34, offsetof(mavlink_camera_settings_t, video_resolution_and_rate_id) }, \
|
2016-11-07 10:04:22 +00:00
|
|
|
} \
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
#define MAVLINK_MESSAGE_INFO_CAMERA_SETTINGS { \
|
|
|
|
|
"CAMERA_SETTINGS", \
|
2017-09-11 17:32:44 +08:00
|
|
|
17, \
|
2016-11-07 10:04:22 +00:00
|
|
|
{ { "time_boot_ms", NULL, MAVLINK_TYPE_UINT32_T, 0, 0, offsetof(mavlink_camera_settings_t, time_boot_ms) }, \
|
2017-09-11 17:32:44 +08:00
|
|
|
{ "camera_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 24, offsetof(mavlink_camera_settings_t, camera_id) }, \
|
|
|
|
|
{ "exposure_mode", NULL, MAVLINK_TYPE_UINT8_T, 0, 25, offsetof(mavlink_camera_settings_t, exposure_mode) }, \
|
|
|
|
|
{ "aperture", NULL, MAVLINK_TYPE_FLOAT, 0, 4, offsetof(mavlink_camera_settings_t, aperture) }, \
|
|
|
|
|
{ "shutter_speed", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_camera_settings_t, shutter_speed) }, \
|
|
|
|
|
{ "iso_sensitivity", NULL, MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_camera_settings_t, iso_sensitivity) }, \
|
|
|
|
|
{ "ev", NULL, MAVLINK_TYPE_FLOAT, 0, 16, offsetof(mavlink_camera_settings_t, ev) }, \
|
|
|
|
|
{ "white_balance", NULL, MAVLINK_TYPE_FLOAT, 0, 20, offsetof(mavlink_camera_settings_t, white_balance) }, \
|
|
|
|
|
{ "mode_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 26, offsetof(mavlink_camera_settings_t, mode_id) }, \
|
|
|
|
|
{ "audio_recording", NULL, MAVLINK_TYPE_UINT8_T, 0, 27, offsetof(mavlink_camera_settings_t, audio_recording) }, \
|
|
|
|
|
{ "color_mode_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 28, offsetof(mavlink_camera_settings_t, color_mode_id) }, \
|
|
|
|
|
{ "image_format_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 29, offsetof(mavlink_camera_settings_t, image_format_id) }, \
|
|
|
|
|
{ "image_quality_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 30, offsetof(mavlink_camera_settings_t, image_quality_id) }, \
|
|
|
|
|
{ "metering_mode_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 31, offsetof(mavlink_camera_settings_t, metering_mode_id) }, \
|
|
|
|
|
{ "flicker_mode_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 32, offsetof(mavlink_camera_settings_t, flicker_mode_id) }, \
|
|
|
|
|
{ "photo_resolution_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 33, offsetof(mavlink_camera_settings_t, photo_resolution_id) }, \
|
|
|
|
|
{ "video_resolution_and_rate_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 34, offsetof(mavlink_camera_settings_t, video_resolution_and_rate_id) }, \
|
2016-11-07 10:04:22 +00:00
|
|
|
} \
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Pack a camera_settings message
|
|
|
|
|
* @param system_id ID of this system
|
|
|
|
|
* @param component_id ID of this component (e.g. 200 for IMU)
|
|
|
|
|
* @param msg The MAVLink message to compress the data into
|
|
|
|
|
*
|
|
|
|
|
* @param time_boot_ms Timestamp (milliseconds since system boot)
|
2017-09-11 17:32:44 +08:00
|
|
|
* @param camera_id Camera ID (1 for first, 2 for second, etc.)
|
|
|
|
|
* @param exposure_mode 0: full auto 1: full manual 2: aperture priority 3: shutter priority
|
|
|
|
|
* @param aperture Aperture is 1/value
|
|
|
|
|
* @param shutter_speed Shutter speed in seconds
|
|
|
|
|
* @param iso_sensitivity ISO sensitivity
|
|
|
|
|
* @param ev Exposure Value
|
|
|
|
|
* @param white_balance Color temperature in degrees Kelvin. (0: Auto WB)
|
|
|
|
|
* @param mode_id Reserved for a camera mode ID. (0: Photo 1: Video)
|
|
|
|
|
* @param audio_recording Audio recording enabled (0: off 1: on)
|
|
|
|
|
* @param color_mode_id Reserved for a color mode ID (Neutral, Vivid, etc.)
|
|
|
|
|
* @param image_format_id Reserved for image format ID (Jpeg/Raw/Jpeg+Raw)
|
|
|
|
|
* @param image_quality_id Reserved for image quality ID (Compression)
|
|
|
|
|
* @param metering_mode_id Reserved for metering mode ID (Average, Center, Spot, etc.)
|
|
|
|
|
* @param flicker_mode_id Reserved for flicker mode ID (Auto, 60Hz, 50Hz, etc.)
|
|
|
|
|
* @param photo_resolution_id Photo resolution ID (4000x3000, 2560x1920, etc.)
|
|
|
|
|
* @param video_resolution_and_rate_id Video resolution and rate ID (4K 60 Hz, 4K 30 Hz, HD 60 Hz, HD 30 Hz, etc.)
|
2016-11-07 10:04:22 +00:00
|
|
|
* @return length of the message in bytes (excluding serial stream start sign)
|
|
|
|
|
*/
|
|
|
|
|
static inline uint16_t mavlink_msg_camera_settings_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
|
2017-09-11 17:32:44 +08:00
|
|
|
uint32_t time_boot_ms, uint8_t camera_id, uint8_t exposure_mode, float aperture, float shutter_speed, float iso_sensitivity, float ev, float white_balance, uint8_t mode_id, uint8_t audio_recording, uint8_t color_mode_id, uint8_t image_format_id, uint8_t image_quality_id, uint8_t metering_mode_id, uint8_t flicker_mode_id, uint8_t photo_resolution_id, uint8_t video_resolution_and_rate_id)
|
2016-11-07 10:04:22 +00:00
|
|
|
{
|
|
|
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
|
|
|
char buf[MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN];
|
|
|
|
|
_mav_put_uint32_t(buf, 0, time_boot_ms);
|
2017-09-11 17:32:44 +08:00
|
|
|
_mav_put_float(buf, 4, aperture);
|
|
|
|
|
_mav_put_float(buf, 8, shutter_speed);
|
|
|
|
|
_mav_put_float(buf, 12, iso_sensitivity);
|
|
|
|
|
_mav_put_float(buf, 16, ev);
|
|
|
|
|
_mav_put_float(buf, 20, white_balance);
|
|
|
|
|
_mav_put_uint8_t(buf, 24, camera_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 25, exposure_mode);
|
|
|
|
|
_mav_put_uint8_t(buf, 26, mode_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 27, audio_recording);
|
|
|
|
|
_mav_put_uint8_t(buf, 28, color_mode_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 29, image_format_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 30, image_quality_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 31, metering_mode_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 32, flicker_mode_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 33, photo_resolution_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 34, video_resolution_and_rate_id);
|
2016-11-07 10:04:22 +00:00
|
|
|
|
|
|
|
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN);
|
|
|
|
|
#else
|
|
|
|
|
mavlink_camera_settings_t packet;
|
|
|
|
|
packet.time_boot_ms = time_boot_ms;
|
2017-09-11 17:32:44 +08:00
|
|
|
packet.aperture = aperture;
|
|
|
|
|
packet.shutter_speed = shutter_speed;
|
|
|
|
|
packet.iso_sensitivity = iso_sensitivity;
|
|
|
|
|
packet.ev = ev;
|
|
|
|
|
packet.white_balance = white_balance;
|
|
|
|
|
packet.camera_id = camera_id;
|
|
|
|
|
packet.exposure_mode = exposure_mode;
|
2016-11-07 10:04:22 +00:00
|
|
|
packet.mode_id = mode_id;
|
2017-09-11 17:32:44 +08:00
|
|
|
packet.audio_recording = audio_recording;
|
|
|
|
|
packet.color_mode_id = color_mode_id;
|
|
|
|
|
packet.image_format_id = image_format_id;
|
|
|
|
|
packet.image_quality_id = image_quality_id;
|
|
|
|
|
packet.metering_mode_id = metering_mode_id;
|
|
|
|
|
packet.flicker_mode_id = flicker_mode_id;
|
|
|
|
|
packet.photo_resolution_id = photo_resolution_id;
|
|
|
|
|
packet.video_resolution_and_rate_id = video_resolution_and_rate_id;
|
2016-11-07 10:04:22 +00:00
|
|
|
|
|
|
|
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
msg->msgid = MAVLINK_MSG_ID_CAMERA_SETTINGS;
|
|
|
|
|
return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_CAMERA_SETTINGS_MIN_LEN, MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN, MAVLINK_MSG_ID_CAMERA_SETTINGS_CRC);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Pack a camera_settings message on a channel
|
|
|
|
|
* @param system_id ID of this system
|
|
|
|
|
* @param component_id ID of this component (e.g. 200 for IMU)
|
|
|
|
|
* @param chan The MAVLink channel this message will be sent over
|
|
|
|
|
* @param msg The MAVLink message to compress the data into
|
|
|
|
|
* @param time_boot_ms Timestamp (milliseconds since system boot)
|
2017-09-11 17:32:44 +08:00
|
|
|
* @param camera_id Camera ID (1 for first, 2 for second, etc.)
|
|
|
|
|
* @param exposure_mode 0: full auto 1: full manual 2: aperture priority 3: shutter priority
|
|
|
|
|
* @param aperture Aperture is 1/value
|
|
|
|
|
* @param shutter_speed Shutter speed in seconds
|
|
|
|
|
* @param iso_sensitivity ISO sensitivity
|
|
|
|
|
* @param ev Exposure Value
|
|
|
|
|
* @param white_balance Color temperature in degrees Kelvin. (0: Auto WB)
|
|
|
|
|
* @param mode_id Reserved for a camera mode ID. (0: Photo 1: Video)
|
|
|
|
|
* @param audio_recording Audio recording enabled (0: off 1: on)
|
|
|
|
|
* @param color_mode_id Reserved for a color mode ID (Neutral, Vivid, etc.)
|
|
|
|
|
* @param image_format_id Reserved for image format ID (Jpeg/Raw/Jpeg+Raw)
|
|
|
|
|
* @param image_quality_id Reserved for image quality ID (Compression)
|
|
|
|
|
* @param metering_mode_id Reserved for metering mode ID (Average, Center, Spot, etc.)
|
|
|
|
|
* @param flicker_mode_id Reserved for flicker mode ID (Auto, 60Hz, 50Hz, etc.)
|
|
|
|
|
* @param photo_resolution_id Photo resolution ID (4000x3000, 2560x1920, etc.)
|
|
|
|
|
* @param video_resolution_and_rate_id Video resolution and rate ID (4K 60 Hz, 4K 30 Hz, HD 60 Hz, HD 30 Hz, etc.)
|
2016-11-07 10:04:22 +00:00
|
|
|
* @return length of the message in bytes (excluding serial stream start sign)
|
|
|
|
|
*/
|
|
|
|
|
static inline uint16_t mavlink_msg_camera_settings_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
|
|
|
|
|
mavlink_message_t* msg,
|
2017-09-11 17:32:44 +08:00
|
|
|
uint32_t time_boot_ms,uint8_t camera_id,uint8_t exposure_mode,float aperture,float shutter_speed,float iso_sensitivity,float ev,float white_balance,uint8_t mode_id,uint8_t audio_recording,uint8_t color_mode_id,uint8_t image_format_id,uint8_t image_quality_id,uint8_t metering_mode_id,uint8_t flicker_mode_id,uint8_t photo_resolution_id,uint8_t video_resolution_and_rate_id)
|
2016-11-07 10:04:22 +00:00
|
|
|
{
|
|
|
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
|
|
|
char buf[MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN];
|
|
|
|
|
_mav_put_uint32_t(buf, 0, time_boot_ms);
|
2017-09-11 17:32:44 +08:00
|
|
|
_mav_put_float(buf, 4, aperture);
|
|
|
|
|
_mav_put_float(buf, 8, shutter_speed);
|
|
|
|
|
_mav_put_float(buf, 12, iso_sensitivity);
|
|
|
|
|
_mav_put_float(buf, 16, ev);
|
|
|
|
|
_mav_put_float(buf, 20, white_balance);
|
|
|
|
|
_mav_put_uint8_t(buf, 24, camera_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 25, exposure_mode);
|
|
|
|
|
_mav_put_uint8_t(buf, 26, mode_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 27, audio_recording);
|
|
|
|
|
_mav_put_uint8_t(buf, 28, color_mode_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 29, image_format_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 30, image_quality_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 31, metering_mode_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 32, flicker_mode_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 33, photo_resolution_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 34, video_resolution_and_rate_id);
|
2016-11-07 10:04:22 +00:00
|
|
|
|
|
|
|
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN);
|
|
|
|
|
#else
|
|
|
|
|
mavlink_camera_settings_t packet;
|
|
|
|
|
packet.time_boot_ms = time_boot_ms;
|
2017-09-11 17:32:44 +08:00
|
|
|
packet.aperture = aperture;
|
|
|
|
|
packet.shutter_speed = shutter_speed;
|
|
|
|
|
packet.iso_sensitivity = iso_sensitivity;
|
|
|
|
|
packet.ev = ev;
|
|
|
|
|
packet.white_balance = white_balance;
|
|
|
|
|
packet.camera_id = camera_id;
|
|
|
|
|
packet.exposure_mode = exposure_mode;
|
2016-11-07 10:04:22 +00:00
|
|
|
packet.mode_id = mode_id;
|
2017-09-11 17:32:44 +08:00
|
|
|
packet.audio_recording = audio_recording;
|
|
|
|
|
packet.color_mode_id = color_mode_id;
|
|
|
|
|
packet.image_format_id = image_format_id;
|
|
|
|
|
packet.image_quality_id = image_quality_id;
|
|
|
|
|
packet.metering_mode_id = metering_mode_id;
|
|
|
|
|
packet.flicker_mode_id = flicker_mode_id;
|
|
|
|
|
packet.photo_resolution_id = photo_resolution_id;
|
|
|
|
|
packet.video_resolution_and_rate_id = video_resolution_and_rate_id;
|
2016-11-07 10:04:22 +00:00
|
|
|
|
|
|
|
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
msg->msgid = MAVLINK_MSG_ID_CAMERA_SETTINGS;
|
|
|
|
|
return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_CAMERA_SETTINGS_MIN_LEN, MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN, MAVLINK_MSG_ID_CAMERA_SETTINGS_CRC);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Encode a camera_settings struct
|
|
|
|
|
*
|
|
|
|
|
* @param system_id ID of this system
|
|
|
|
|
* @param component_id ID of this component (e.g. 200 for IMU)
|
|
|
|
|
* @param msg The MAVLink message to compress the data into
|
|
|
|
|
* @param camera_settings C-struct to read the message contents from
|
|
|
|
|
*/
|
|
|
|
|
static inline uint16_t mavlink_msg_camera_settings_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_camera_settings_t* camera_settings)
|
|
|
|
|
{
|
2017-09-11 17:32:44 +08:00
|
|
|
return mavlink_msg_camera_settings_pack(system_id, component_id, msg, camera_settings->time_boot_ms, camera_settings->camera_id, camera_settings->exposure_mode, camera_settings->aperture, camera_settings->shutter_speed, camera_settings->iso_sensitivity, camera_settings->ev, camera_settings->white_balance, camera_settings->mode_id, camera_settings->audio_recording, camera_settings->color_mode_id, camera_settings->image_format_id, camera_settings->image_quality_id, camera_settings->metering_mode_id, camera_settings->flicker_mode_id, camera_settings->photo_resolution_id, camera_settings->video_resolution_and_rate_id);
|
2016-11-07 10:04:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Encode a camera_settings struct on a channel
|
|
|
|
|
*
|
|
|
|
|
* @param system_id ID of this system
|
|
|
|
|
* @param component_id ID of this component (e.g. 200 for IMU)
|
|
|
|
|
* @param chan The MAVLink channel this message will be sent over
|
|
|
|
|
* @param msg The MAVLink message to compress the data into
|
|
|
|
|
* @param camera_settings C-struct to read the message contents from
|
|
|
|
|
*/
|
|
|
|
|
static inline uint16_t mavlink_msg_camera_settings_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_camera_settings_t* camera_settings)
|
|
|
|
|
{
|
2017-09-11 17:32:44 +08:00
|
|
|
return mavlink_msg_camera_settings_pack_chan(system_id, component_id, chan, msg, camera_settings->time_boot_ms, camera_settings->camera_id, camera_settings->exposure_mode, camera_settings->aperture, camera_settings->shutter_speed, camera_settings->iso_sensitivity, camera_settings->ev, camera_settings->white_balance, camera_settings->mode_id, camera_settings->audio_recording, camera_settings->color_mode_id, camera_settings->image_format_id, camera_settings->image_quality_id, camera_settings->metering_mode_id, camera_settings->flicker_mode_id, camera_settings->photo_resolution_id, camera_settings->video_resolution_and_rate_id);
|
2016-11-07 10:04:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Send a camera_settings message
|
|
|
|
|
* @param chan MAVLink channel to send the message
|
|
|
|
|
*
|
|
|
|
|
* @param time_boot_ms Timestamp (milliseconds since system boot)
|
2017-09-11 17:32:44 +08:00
|
|
|
* @param camera_id Camera ID (1 for first, 2 for second, etc.)
|
|
|
|
|
* @param exposure_mode 0: full auto 1: full manual 2: aperture priority 3: shutter priority
|
|
|
|
|
* @param aperture Aperture is 1/value
|
|
|
|
|
* @param shutter_speed Shutter speed in seconds
|
|
|
|
|
* @param iso_sensitivity ISO sensitivity
|
|
|
|
|
* @param ev Exposure Value
|
|
|
|
|
* @param white_balance Color temperature in degrees Kelvin. (0: Auto WB)
|
|
|
|
|
* @param mode_id Reserved for a camera mode ID. (0: Photo 1: Video)
|
|
|
|
|
* @param audio_recording Audio recording enabled (0: off 1: on)
|
|
|
|
|
* @param color_mode_id Reserved for a color mode ID (Neutral, Vivid, etc.)
|
|
|
|
|
* @param image_format_id Reserved for image format ID (Jpeg/Raw/Jpeg+Raw)
|
|
|
|
|
* @param image_quality_id Reserved for image quality ID (Compression)
|
|
|
|
|
* @param metering_mode_id Reserved for metering mode ID (Average, Center, Spot, etc.)
|
|
|
|
|
* @param flicker_mode_id Reserved for flicker mode ID (Auto, 60Hz, 50Hz, etc.)
|
|
|
|
|
* @param photo_resolution_id Photo resolution ID (4000x3000, 2560x1920, etc.)
|
|
|
|
|
* @param video_resolution_and_rate_id Video resolution and rate ID (4K 60 Hz, 4K 30 Hz, HD 60 Hz, HD 30 Hz, etc.)
|
2016-11-07 10:04:22 +00:00
|
|
|
*/
|
|
|
|
|
#ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
|
|
|
|
|
|
2017-09-11 17:32:44 +08:00
|
|
|
static inline void mavlink_msg_camera_settings_send(mavlink_channel_t chan, uint32_t time_boot_ms, uint8_t camera_id, uint8_t exposure_mode, float aperture, float shutter_speed, float iso_sensitivity, float ev, float white_balance, uint8_t mode_id, uint8_t audio_recording, uint8_t color_mode_id, uint8_t image_format_id, uint8_t image_quality_id, uint8_t metering_mode_id, uint8_t flicker_mode_id, uint8_t photo_resolution_id, uint8_t video_resolution_and_rate_id)
|
2016-11-07 10:04:22 +00:00
|
|
|
{
|
|
|
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
|
|
|
char buf[MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN];
|
|
|
|
|
_mav_put_uint32_t(buf, 0, time_boot_ms);
|
2017-09-11 17:32:44 +08:00
|
|
|
_mav_put_float(buf, 4, aperture);
|
|
|
|
|
_mav_put_float(buf, 8, shutter_speed);
|
|
|
|
|
_mav_put_float(buf, 12, iso_sensitivity);
|
|
|
|
|
_mav_put_float(buf, 16, ev);
|
|
|
|
|
_mav_put_float(buf, 20, white_balance);
|
|
|
|
|
_mav_put_uint8_t(buf, 24, camera_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 25, exposure_mode);
|
|
|
|
|
_mav_put_uint8_t(buf, 26, mode_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 27, audio_recording);
|
|
|
|
|
_mav_put_uint8_t(buf, 28, color_mode_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 29, image_format_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 30, image_quality_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 31, metering_mode_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 32, flicker_mode_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 33, photo_resolution_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 34, video_resolution_and_rate_id);
|
2016-11-07 10:04:22 +00:00
|
|
|
|
|
|
|
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_CAMERA_SETTINGS, buf, MAVLINK_MSG_ID_CAMERA_SETTINGS_MIN_LEN, MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN, MAVLINK_MSG_ID_CAMERA_SETTINGS_CRC);
|
|
|
|
|
#else
|
|
|
|
|
mavlink_camera_settings_t packet;
|
|
|
|
|
packet.time_boot_ms = time_boot_ms;
|
2017-09-11 17:32:44 +08:00
|
|
|
packet.aperture = aperture;
|
|
|
|
|
packet.shutter_speed = shutter_speed;
|
|
|
|
|
packet.iso_sensitivity = iso_sensitivity;
|
|
|
|
|
packet.ev = ev;
|
|
|
|
|
packet.white_balance = white_balance;
|
|
|
|
|
packet.camera_id = camera_id;
|
|
|
|
|
packet.exposure_mode = exposure_mode;
|
2016-11-07 10:04:22 +00:00
|
|
|
packet.mode_id = mode_id;
|
2017-09-11 17:32:44 +08:00
|
|
|
packet.audio_recording = audio_recording;
|
|
|
|
|
packet.color_mode_id = color_mode_id;
|
|
|
|
|
packet.image_format_id = image_format_id;
|
|
|
|
|
packet.image_quality_id = image_quality_id;
|
|
|
|
|
packet.metering_mode_id = metering_mode_id;
|
|
|
|
|
packet.flicker_mode_id = flicker_mode_id;
|
|
|
|
|
packet.photo_resolution_id = photo_resolution_id;
|
|
|
|
|
packet.video_resolution_and_rate_id = video_resolution_and_rate_id;
|
2016-11-07 10:04:22 +00:00
|
|
|
|
|
|
|
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_CAMERA_SETTINGS, (const char *)&packet, MAVLINK_MSG_ID_CAMERA_SETTINGS_MIN_LEN, MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN, MAVLINK_MSG_ID_CAMERA_SETTINGS_CRC);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Send a camera_settings message
|
|
|
|
|
* @param chan MAVLink channel to send the message
|
|
|
|
|
* @param struct The MAVLink struct to serialize
|
|
|
|
|
*/
|
|
|
|
|
static inline void mavlink_msg_camera_settings_send_struct(mavlink_channel_t chan, const mavlink_camera_settings_t* camera_settings)
|
|
|
|
|
{
|
|
|
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
2017-09-11 17:32:44 +08:00
|
|
|
mavlink_msg_camera_settings_send(chan, camera_settings->time_boot_ms, camera_settings->camera_id, camera_settings->exposure_mode, camera_settings->aperture, camera_settings->shutter_speed, camera_settings->iso_sensitivity, camera_settings->ev, camera_settings->white_balance, camera_settings->mode_id, camera_settings->audio_recording, camera_settings->color_mode_id, camera_settings->image_format_id, camera_settings->image_quality_id, camera_settings->metering_mode_id, camera_settings->flicker_mode_id, camera_settings->photo_resolution_id, camera_settings->video_resolution_and_rate_id);
|
2016-11-07 10:04:22 +00:00
|
|
|
#else
|
|
|
|
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_CAMERA_SETTINGS, (const char *)camera_settings, MAVLINK_MSG_ID_CAMERA_SETTINGS_MIN_LEN, MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN, MAVLINK_MSG_ID_CAMERA_SETTINGS_CRC);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN <= MAVLINK_MAX_PAYLOAD_LEN
|
|
|
|
|
/*
|
|
|
|
|
This varient of _send() can be used to save stack space by re-using
|
|
|
|
|
memory from the receive buffer. The caller provides a
|
|
|
|
|
mavlink_message_t which is the size of a full mavlink message. This
|
|
|
|
|
is usually the receive buffer for the channel, and allows a reply to an
|
|
|
|
|
incoming message with minimum stack space usage.
|
|
|
|
|
*/
|
2017-09-11 17:32:44 +08:00
|
|
|
static inline void mavlink_msg_camera_settings_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint32_t time_boot_ms, uint8_t camera_id, uint8_t exposure_mode, float aperture, float shutter_speed, float iso_sensitivity, float ev, float white_balance, uint8_t mode_id, uint8_t audio_recording, uint8_t color_mode_id, uint8_t image_format_id, uint8_t image_quality_id, uint8_t metering_mode_id, uint8_t flicker_mode_id, uint8_t photo_resolution_id, uint8_t video_resolution_and_rate_id)
|
2016-11-07 10:04:22 +00:00
|
|
|
{
|
|
|
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
|
|
|
char *buf = (char *)msgbuf;
|
|
|
|
|
_mav_put_uint32_t(buf, 0, time_boot_ms);
|
2017-09-11 17:32:44 +08:00
|
|
|
_mav_put_float(buf, 4, aperture);
|
|
|
|
|
_mav_put_float(buf, 8, shutter_speed);
|
|
|
|
|
_mav_put_float(buf, 12, iso_sensitivity);
|
|
|
|
|
_mav_put_float(buf, 16, ev);
|
|
|
|
|
_mav_put_float(buf, 20, white_balance);
|
|
|
|
|
_mav_put_uint8_t(buf, 24, camera_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 25, exposure_mode);
|
|
|
|
|
_mav_put_uint8_t(buf, 26, mode_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 27, audio_recording);
|
|
|
|
|
_mav_put_uint8_t(buf, 28, color_mode_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 29, image_format_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 30, image_quality_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 31, metering_mode_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 32, flicker_mode_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 33, photo_resolution_id);
|
|
|
|
|
_mav_put_uint8_t(buf, 34, video_resolution_and_rate_id);
|
2016-11-07 10:04:22 +00:00
|
|
|
|
|
|
|
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_CAMERA_SETTINGS, buf, MAVLINK_MSG_ID_CAMERA_SETTINGS_MIN_LEN, MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN, MAVLINK_MSG_ID_CAMERA_SETTINGS_CRC);
|
|
|
|
|
#else
|
|
|
|
|
mavlink_camera_settings_t *packet = (mavlink_camera_settings_t *)msgbuf;
|
|
|
|
|
packet->time_boot_ms = time_boot_ms;
|
2017-09-11 17:32:44 +08:00
|
|
|
packet->aperture = aperture;
|
|
|
|
|
packet->shutter_speed = shutter_speed;
|
|
|
|
|
packet->iso_sensitivity = iso_sensitivity;
|
|
|
|
|
packet->ev = ev;
|
|
|
|
|
packet->white_balance = white_balance;
|
|
|
|
|
packet->camera_id = camera_id;
|
|
|
|
|
packet->exposure_mode = exposure_mode;
|
2016-11-07 10:04:22 +00:00
|
|
|
packet->mode_id = mode_id;
|
2017-09-11 17:32:44 +08:00
|
|
|
packet->audio_recording = audio_recording;
|
|
|
|
|
packet->color_mode_id = color_mode_id;
|
|
|
|
|
packet->image_format_id = image_format_id;
|
|
|
|
|
packet->image_quality_id = image_quality_id;
|
|
|
|
|
packet->metering_mode_id = metering_mode_id;
|
|
|
|
|
packet->flicker_mode_id = flicker_mode_id;
|
|
|
|
|
packet->photo_resolution_id = photo_resolution_id;
|
|
|
|
|
packet->video_resolution_and_rate_id = video_resolution_and_rate_id;
|
2016-11-07 10:04:22 +00:00
|
|
|
|
|
|
|
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_CAMERA_SETTINGS, (const char *)packet, MAVLINK_MSG_ID_CAMERA_SETTINGS_MIN_LEN, MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN, MAVLINK_MSG_ID_CAMERA_SETTINGS_CRC);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// MESSAGE CAMERA_SETTINGS UNPACKING
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get field time_boot_ms from camera_settings message
|
|
|
|
|
*
|
|
|
|
|
* @return Timestamp (milliseconds since system boot)
|
|
|
|
|
*/
|
|
|
|
|
static inline uint32_t mavlink_msg_camera_settings_get_time_boot_ms(const mavlink_message_t* msg)
|
|
|
|
|
{
|
|
|
|
|
return _MAV_RETURN_uint32_t(msg, 0);
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-11 17:32:44 +08:00
|
|
|
/**
|
|
|
|
|
* @brief Get field camera_id from camera_settings message
|
|
|
|
|
*
|
|
|
|
|
* @return Camera ID (1 for first, 2 for second, etc.)
|
|
|
|
|
*/
|
|
|
|
|
static inline uint8_t mavlink_msg_camera_settings_get_camera_id(const mavlink_message_t* msg)
|
|
|
|
|
{
|
|
|
|
|
return _MAV_RETURN_uint8_t(msg, 24);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get field exposure_mode from camera_settings message
|
|
|
|
|
*
|
|
|
|
|
* @return 0: full auto 1: full manual 2: aperture priority 3: shutter priority
|
|
|
|
|
*/
|
|
|
|
|
static inline uint8_t mavlink_msg_camera_settings_get_exposure_mode(const mavlink_message_t* msg)
|
|
|
|
|
{
|
|
|
|
|
return _MAV_RETURN_uint8_t(msg, 25);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get field aperture from camera_settings message
|
|
|
|
|
*
|
|
|
|
|
* @return Aperture is 1/value
|
|
|
|
|
*/
|
|
|
|
|
static inline float mavlink_msg_camera_settings_get_aperture(const mavlink_message_t* msg)
|
|
|
|
|
{
|
|
|
|
|
return _MAV_RETURN_float(msg, 4);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get field shutter_speed from camera_settings message
|
|
|
|
|
*
|
|
|
|
|
* @return Shutter speed in seconds
|
|
|
|
|
*/
|
|
|
|
|
static inline float mavlink_msg_camera_settings_get_shutter_speed(const mavlink_message_t* msg)
|
|
|
|
|
{
|
|
|
|
|
return _MAV_RETURN_float(msg, 8);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get field iso_sensitivity from camera_settings message
|
|
|
|
|
*
|
|
|
|
|
* @return ISO sensitivity
|
|
|
|
|
*/
|
|
|
|
|
static inline float mavlink_msg_camera_settings_get_iso_sensitivity(const mavlink_message_t* msg)
|
|
|
|
|
{
|
|
|
|
|
return _MAV_RETURN_float(msg, 12);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get field ev from camera_settings message
|
|
|
|
|
*
|
|
|
|
|
* @return Exposure Value
|
|
|
|
|
*/
|
|
|
|
|
static inline float mavlink_msg_camera_settings_get_ev(const mavlink_message_t* msg)
|
|
|
|
|
{
|
|
|
|
|
return _MAV_RETURN_float(msg, 16);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get field white_balance from camera_settings message
|
|
|
|
|
*
|
|
|
|
|
* @return Color temperature in degrees Kelvin. (0: Auto WB)
|
|
|
|
|
*/
|
|
|
|
|
static inline float mavlink_msg_camera_settings_get_white_balance(const mavlink_message_t* msg)
|
|
|
|
|
{
|
|
|
|
|
return _MAV_RETURN_float(msg, 20);
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-07 10:04:22 +00:00
|
|
|
/**
|
2017-04-21 07:17:26 +00:00
|
|
|
* @brief Get field mode_id from camera_settings message
|
2016-11-07 10:04:22 +00:00
|
|
|
*
|
2017-09-11 17:32:44 +08:00
|
|
|
* @return Reserved for a camera mode ID. (0: Photo 1: Video)
|
2016-11-07 10:04:22 +00:00
|
|
|
*/
|
2017-04-21 07:17:26 +00:00
|
|
|
static inline uint8_t mavlink_msg_camera_settings_get_mode_id(const mavlink_message_t* msg)
|
2016-11-07 10:04:22 +00:00
|
|
|
{
|
2017-09-11 17:32:44 +08:00
|
|
|
return _MAV_RETURN_uint8_t(msg, 26);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get field audio_recording from camera_settings message
|
|
|
|
|
*
|
|
|
|
|
* @return Audio recording enabled (0: off 1: on)
|
|
|
|
|
*/
|
|
|
|
|
static inline uint8_t mavlink_msg_camera_settings_get_audio_recording(const mavlink_message_t* msg)
|
|
|
|
|
{
|
|
|
|
|
return _MAV_RETURN_uint8_t(msg, 27);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get field color_mode_id from camera_settings message
|
|
|
|
|
*
|
|
|
|
|
* @return Reserved for a color mode ID (Neutral, Vivid, etc.)
|
|
|
|
|
*/
|
|
|
|
|
static inline uint8_t mavlink_msg_camera_settings_get_color_mode_id(const mavlink_message_t* msg)
|
|
|
|
|
{
|
|
|
|
|
return _MAV_RETURN_uint8_t(msg, 28);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get field image_format_id from camera_settings message
|
|
|
|
|
*
|
|
|
|
|
* @return Reserved for image format ID (Jpeg/Raw/Jpeg+Raw)
|
|
|
|
|
*/
|
|
|
|
|
static inline uint8_t mavlink_msg_camera_settings_get_image_format_id(const mavlink_message_t* msg)
|
|
|
|
|
{
|
|
|
|
|
return _MAV_RETURN_uint8_t(msg, 29);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get field image_quality_id from camera_settings message
|
|
|
|
|
*
|
|
|
|
|
* @return Reserved for image quality ID (Compression)
|
|
|
|
|
*/
|
|
|
|
|
static inline uint8_t mavlink_msg_camera_settings_get_image_quality_id(const mavlink_message_t* msg)
|
|
|
|
|
{
|
|
|
|
|
return _MAV_RETURN_uint8_t(msg, 30);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get field metering_mode_id from camera_settings message
|
|
|
|
|
*
|
|
|
|
|
* @return Reserved for metering mode ID (Average, Center, Spot, etc.)
|
|
|
|
|
*/
|
|
|
|
|
static inline uint8_t mavlink_msg_camera_settings_get_metering_mode_id(const mavlink_message_t* msg)
|
|
|
|
|
{
|
|
|
|
|
return _MAV_RETURN_uint8_t(msg, 31);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get field flicker_mode_id from camera_settings message
|
|
|
|
|
*
|
|
|
|
|
* @return Reserved for flicker mode ID (Auto, 60Hz, 50Hz, etc.)
|
|
|
|
|
*/
|
|
|
|
|
static inline uint8_t mavlink_msg_camera_settings_get_flicker_mode_id(const mavlink_message_t* msg)
|
|
|
|
|
{
|
|
|
|
|
return _MAV_RETURN_uint8_t(msg, 32);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get field photo_resolution_id from camera_settings message
|
|
|
|
|
*
|
|
|
|
|
* @return Photo resolution ID (4000x3000, 2560x1920, etc.)
|
|
|
|
|
*/
|
|
|
|
|
static inline uint8_t mavlink_msg_camera_settings_get_photo_resolution_id(const mavlink_message_t* msg)
|
|
|
|
|
{
|
|
|
|
|
return _MAV_RETURN_uint8_t(msg, 33);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get field video_resolution_and_rate_id from camera_settings message
|
|
|
|
|
*
|
|
|
|
|
* @return Video resolution and rate ID (4K 60 Hz, 4K 30 Hz, HD 60 Hz, HD 30 Hz, etc.)
|
|
|
|
|
*/
|
|
|
|
|
static inline uint8_t mavlink_msg_camera_settings_get_video_resolution_and_rate_id(const mavlink_message_t* msg)
|
|
|
|
|
{
|
|
|
|
|
return _MAV_RETURN_uint8_t(msg, 34);
|
2017-06-26 13:51:38 +00:00
|
|
|
}
|
|
|
|
|
|
2016-11-07 10:04:22 +00:00
|
|
|
/**
|
|
|
|
|
* @brief Decode a camera_settings message into a struct
|
|
|
|
|
*
|
|
|
|
|
* @param msg The message to decode
|
|
|
|
|
* @param camera_settings C-struct to decode the message contents into
|
|
|
|
|
*/
|
|
|
|
|
static inline void mavlink_msg_camera_settings_decode(const mavlink_message_t* msg, mavlink_camera_settings_t* camera_settings)
|
|
|
|
|
{
|
|
|
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
|
|
|
camera_settings->time_boot_ms = mavlink_msg_camera_settings_get_time_boot_ms(msg);
|
2017-09-11 17:32:44 +08:00
|
|
|
camera_settings->aperture = mavlink_msg_camera_settings_get_aperture(msg);
|
|
|
|
|
camera_settings->shutter_speed = mavlink_msg_camera_settings_get_shutter_speed(msg);
|
|
|
|
|
camera_settings->iso_sensitivity = mavlink_msg_camera_settings_get_iso_sensitivity(msg);
|
|
|
|
|
camera_settings->ev = mavlink_msg_camera_settings_get_ev(msg);
|
|
|
|
|
camera_settings->white_balance = mavlink_msg_camera_settings_get_white_balance(msg);
|
|
|
|
|
camera_settings->camera_id = mavlink_msg_camera_settings_get_camera_id(msg);
|
|
|
|
|
camera_settings->exposure_mode = mavlink_msg_camera_settings_get_exposure_mode(msg);
|
2016-11-07 10:04:22 +00:00
|
|
|
camera_settings->mode_id = mavlink_msg_camera_settings_get_mode_id(msg);
|
2017-09-11 17:32:44 +08:00
|
|
|
camera_settings->audio_recording = mavlink_msg_camera_settings_get_audio_recording(msg);
|
|
|
|
|
camera_settings->color_mode_id = mavlink_msg_camera_settings_get_color_mode_id(msg);
|
|
|
|
|
camera_settings->image_format_id = mavlink_msg_camera_settings_get_image_format_id(msg);
|
|
|
|
|
camera_settings->image_quality_id = mavlink_msg_camera_settings_get_image_quality_id(msg);
|
|
|
|
|
camera_settings->metering_mode_id = mavlink_msg_camera_settings_get_metering_mode_id(msg);
|
|
|
|
|
camera_settings->flicker_mode_id = mavlink_msg_camera_settings_get_flicker_mode_id(msg);
|
|
|
|
|
camera_settings->photo_resolution_id = mavlink_msg_camera_settings_get_photo_resolution_id(msg);
|
|
|
|
|
camera_settings->video_resolution_and_rate_id = mavlink_msg_camera_settings_get_video_resolution_and_rate_id(msg);
|
2016-11-07 10:04:22 +00:00
|
|
|
#else
|
|
|
|
|
uint8_t len = msg->len < MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN? msg->len : MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN;
|
|
|
|
|
memset(camera_settings, 0, MAVLINK_MSG_ID_CAMERA_SETTINGS_LEN);
|
|
|
|
|
memcpy(camera_settings, _MAV_PAYLOAD(msg), len);
|
|
|
|
|
#endif
|
|
|
|
|
}
|