Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AP_Mount: set clock on SIYI #25543

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions libraries/AP_Mount/AP_Mount_Siyi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include <GCS_MAVLink/GCS.h>
#include <GCS_MAVLink/include/mavlink/v2.0/checksum.h>
#include <AP_SerialManager/AP_SerialManager.h>
#include <AP_RTC/AP_RTC.h>

extern const AP_HAL::HAL& hal;

Expand Down Expand Up @@ -68,6 +69,17 @@ void AP_Mount_Siyi::update()
} else {
request_configuration();
}

#if AP_RTC_ENABLED
// send UTC time to the camera
if (sent_time_count < 5) {
uint64_t utc_usec;
if (AP::rtc().get_utc_usec(utc_usec) &&
send_packet(SiyiCommandId::SET_TIME, (const uint8_t *)&utc_usec, sizeof(utc_usec))) {
sent_time_count++;
}
}
#endif
}

// request attitude at regular intervals
Expand Down
4 changes: 4 additions & 0 deletions libraries/AP_Mount/AP_Mount_Siyi.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ class AP_Mount_Siyi : public AP_Mount_Backend
SET_CAMERA_IMAGE_TYPE = 0x11,
READ_RANGEFINDER = 0x15,
EXTERNAL_ATTITUDE = 0x22,
SET_TIME = 0x30,
};

// Function Feedback Info packet info_type values
Expand Down Expand Up @@ -335,6 +336,9 @@ class AP_Mount_Siyi : public AP_Mount_Backend
const char* model_name;
};
static const HWInfo hardware_lookup_table[];

// count of SET_TIME packets, we send 5 times to cope with packet loss
uint8_t sent_time_count;
};

#endif // HAL_MOUNT_SIYISERIAL_ENABLED