mirror of https://github.com/ArduPilot/ardupilot
129 lines
5.1 KiB
C++
129 lines
5.1 KiB
C++
/*
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*
|
|
Camera driver backend class. Each supported camera type
|
|
needs to have an object derived from this class.
|
|
*/
|
|
#pragma once
|
|
|
|
#include "AP_Camera_config.h"
|
|
|
|
#if AP_CAMERA_ENABLED
|
|
#include "AP_Camera.h"
|
|
|
|
class AP_Camera_Backend
|
|
{
|
|
public:
|
|
|
|
// Constructor
|
|
AP_Camera_Backend(AP_Camera &frontend, AP_Camera_Params ¶ms, uint8_t instance);
|
|
|
|
/* Do not allow copies */
|
|
CLASS_NO_COPY(AP_Camera_Backend);
|
|
|
|
// init - performs any required initialisation
|
|
virtual void init() {};
|
|
|
|
// update - should be called at 50hz
|
|
virtual void update();
|
|
|
|
// return true if healthy
|
|
virtual bool healthy() const { return true; }
|
|
|
|
// momentary switch to change camera between picture and video modes
|
|
virtual void cam_mode_toggle() {}
|
|
|
|
// take a picture. returns true on success
|
|
bool take_picture();
|
|
|
|
// entry point to actually take a picture. returns true on success
|
|
virtual bool trigger_pic() = 0;
|
|
|
|
// start or stop video recording. returns true on success
|
|
// set start_recording = true to start record, false to stop recording
|
|
virtual bool record_video(bool start_recording) { return false; }
|
|
|
|
// set camera zoom step. returns true on success
|
|
// zoom out = -1, hold = 0, zoom in = 1
|
|
virtual bool set_zoom_step(int8_t zoom_step) { return false; }
|
|
|
|
// set focus in, out or hold. returns true on success
|
|
// focus in = -1, focus hold = 0, focus out = 1
|
|
virtual bool set_manual_focus_step(int8_t focus_step) { return false; }
|
|
|
|
// auto focus. returns true on success
|
|
virtual bool set_auto_focus() { return false; }
|
|
|
|
// handle incoming mavlink message
|
|
virtual void handle_message(mavlink_channel_t chan, const mavlink_message_t &msg) {}
|
|
|
|
// configure camera
|
|
virtual void configure(float shooting_mode, float shutter_speed, float aperture, float ISO, float exposure_type, float cmd_id, float engine_cutoff_time) {}
|
|
|
|
// handle camera control
|
|
virtual void control(float session, float zoom_pos, float zoom_step, float focus_lock, float shooting_cmd, float cmd_id);
|
|
|
|
// set camera trigger distance in meters
|
|
void set_trigger_distance(float distance_m) { _params.trigg_dist.set(distance_m); }
|
|
|
|
// send camera feedback message to GCS
|
|
void send_camera_feedback(mavlink_channel_t chan) const;
|
|
|
|
protected:
|
|
|
|
// references
|
|
AP_Camera &_frontend; // reference to the front end which holds parameters
|
|
AP_Camera_Params &_params; // parameters for this backend
|
|
|
|
// feedback pin related methods
|
|
void setup_feedback_callback();
|
|
void feedback_pin_isr(uint8_t pin, bool high, uint32_t timestamp_us);
|
|
void feedback_pin_timer();
|
|
void check_feedback();
|
|
|
|
// store vehicle location and attitude for use in camera_feedback message to GCS
|
|
void prep_mavlink_msg_camera_feedback(uint64_t timestamp_us);
|
|
struct {
|
|
uint64_t timestamp_us; // system time of most recent image
|
|
Location location; // location where most recent image was taken
|
|
int32_t roll_sensor; // vehicle roll in centi-degrees
|
|
int32_t pitch_sensor; // vehicle pitch in centi-degrees
|
|
int32_t yaw_sensor; // vehicle yaw in centi-degrees
|
|
uint32_t feedback_trigger_logged_count; // ID sequence number
|
|
} camera_feedback;
|
|
|
|
// Logging Function
|
|
void log_picture();
|
|
void Write_Camera(uint64_t timestamp_us=0);
|
|
void Write_Trigger();
|
|
void Write_CameraInfo(enum LogMessages msg, uint64_t timestamp_us=0);
|
|
|
|
// internal members
|
|
uint8_t _instance; // this instance's number
|
|
bool timer_installed; // true if feedback pin change detected using timer
|
|
bool isr_installed; // true if feedback pin change is detected with an interrupt
|
|
uint8_t last_pin_state; // last pin state. used by timer based detection
|
|
uint32_t feedback_trigger_count; // number of times the interrupt detected the feedback pin changed
|
|
uint32_t feedback_trigger_timestamp_us; // system time (in microseconds) that timer detected the feedback pin changed
|
|
uint32_t feedback_trigger_logged_count; // number of times the feedback has been logged
|
|
bool trigger_pending; // true if a call to take_pic() was delayed due to the minimum time interval time
|
|
uint32_t last_photo_time_ms; // system time that photo was last taken
|
|
Location last_location; // Location that last picture was taken at (used for trigg_dist calculation)
|
|
uint16_t image_index; // number of pictures taken since boot
|
|
};
|
|
|
|
#endif // AP_CAMERA_ENABLED
|