2012-06-13 16:00:20 -03:00
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*-
# include <AP_Camera.h>
# include <AP_Relay.h>
2012-12-12 15:48:01 -04:00
# include <AP_Math.h>
# include <RC_Channel.h>
# include <AP_HAL.h>
2012-06-13 16:00:20 -03:00
2012-12-12 15:48:01 -04:00
extern const AP_HAL : : HAL & hal ;
2012-12-06 04:46:09 -04:00
extern int32_t wp_distance ; // Note: unfortunately this variable is in meter for ArduPlane and cm for ArduCopter
2012-06-13 16:00:20 -03:00
extern AP_Relay relay ;
// ------------------------------
# define CAM_DEBUG DISABLED
const AP_Param : : GroupInfo AP_Camera : : var_info [ ] PROGMEM = {
2012-08-17 03:09:29 -03:00
// @Param: TRIGG_TYPE
// @DisplayName: Camera shutter (trigger) type
// @Description: how to trigger the camera to take a picture
2012-12-06 04:46:09 -04:00
// @Values: 0:Servo,1:Relay,2:Servo and turn off throttle,3:Servo when 3m from waypoint,4:transistor
2012-08-17 03:09:29 -03:00
// @User: Standard
2012-12-06 04:46:09 -04:00
AP_GROUPINFO ( " TRIGG_TYPE " , 0 , AP_Camera , _trigger_type , AP_CAMERA_TRIGGER_DEFAULT_TRIGGER_TYPE ) ,
// @Param: DURATION
// @DisplayName: Duration that shutter is held open
// @Description: How long the shutter will be held open in 10ths of a second (i.e. enter 10 for 1second, 50 for 5seconds)
// @Range: 0 50
// @User: Standard
AP_GROUPINFO ( " DURATION " , 1 , AP_Camera , _trigger_duration , AP_CAMERA_TRIGGER_DEFAULT_DURATION ) ,
// @Param: SERVO_ON
// @DisplayName: Servo ON PWM value
// @Description: PWM value to move servo to when shutter is activated
// @Range: 1000 2000
// @User: Standard
AP_GROUPINFO ( " SERVO_ON " , 2 , AP_Camera , _servo_on_pwm , AP_CAMERA_SERVO_ON_PWM ) ,
// @Param: SERVO_OFF
// @DisplayName: Servo OFF PWM value
// @Description: PWM value to move servo to when shutter is deactivated
// @Range: 1000 2000
// @User: Standard
AP_GROUPINFO ( " SERVO_OFF " , 3 , AP_Camera , _servo_off_pwm , AP_CAMERA_SERVO_OFF_PWM ) ,
2012-08-17 03:09:29 -03:00
AP_GROUPEND
2012-06-13 16:00:20 -03:00
} ;
2012-06-17 17:53:54 -03:00
/// Servo operated camera
2012-06-13 16:00:20 -03:00
void
2012-06-17 17:53:54 -03:00
AP_Camera : : servo_pic ( )
2012-06-13 16:00:20 -03:00
{
2012-12-06 04:46:09 -04:00
RC_Channel_aux : : set_radio ( RC_Channel_aux : : k_cam_trigger , _servo_on_pwm ) ;
// leave a message that it should be active for this many loops (assumes 50hz loops)
_trigger_counter = constrain ( _trigger_duration * 5 , 0 , 255 ) ;
2012-06-13 16:00:20 -03:00
}
2012-06-17 17:53:54 -03:00
/// basic relay activation
2012-06-13 16:00:20 -03:00
void
2012-06-17 17:53:54 -03:00
AP_Camera : : relay_pic ( )
2012-06-13 16:00:20 -03:00
{
2012-08-17 03:09:29 -03:00
relay . on ( ) ;
2012-12-06 04:46:09 -04:00
// leave a message that it should be active for this many loops (assumes 50hz loops)
_trigger_counter = constrain ( _trigger_duration * 5 , 0 , 255 ) ;
2012-06-13 16:00:20 -03:00
}
2012-06-17 17:53:54 -03:00
/// pictures blurry? use this trigger. Turns off the throttle until for # of cycles of medium loop then takes the picture and re-enables the throttle.
2012-06-13 16:00:20 -03:00
void
2012-06-17 17:53:54 -03:00
AP_Camera : : throttle_pic ( )
2012-06-13 16:00:20 -03:00
{
// TODO find a way to do this without using the global parameter g
// g.channel_throttle.radio_out = g.throttle_min;
2012-12-06 04:46:09 -04:00
if ( _thr_pic_counter = = 10 ) {
2012-08-17 03:09:29 -03:00
servo_pic ( ) ; // triggering method
2012-12-06 04:46:09 -04:00
_thr_pic_counter = 0 ;
2012-06-13 16:00:20 -03:00
// g.channel_throttle.radio_out = g.throttle_cruise;
2012-08-17 03:09:29 -03:00
}
2012-12-06 04:46:09 -04:00
_thr_pic_counter + + ;
2012-06-13 16:00:20 -03:00
}
2012-12-06 04:46:09 -04:00
/// distance_pic - triggers picture when within 3m of waypoint
2012-06-13 16:00:20 -03:00
void
2012-06-17 17:53:54 -03:00
AP_Camera : : distance_pic ( )
2012-06-13 16:00:20 -03:00
{
2012-12-06 04:46:09 -04:00
if ( wp_distance < AP_CAMERA_WP_DISTANCE ) {
2012-08-17 03:09:29 -03:00
servo_pic ( ) ; // triggering method
}
2012-06-13 16:00:20 -03:00
}
2012-06-17 17:53:54 -03:00
/// hacked the circuit to run a transistor? use this trigger to send output.
2012-06-13 16:00:20 -03:00
void
2012-12-06 04:46:09 -04:00
AP_Camera : : transistor_pic ( )
2012-06-13 16:00:20 -03:00
{
2012-08-17 03:09:29 -03:00
// TODO: Assign pin spare pin for output
2012-12-12 15:48:01 -04:00
hal . gpio - > write ( AP_CAMERA_TRANSISTOR_PIN , 1 ) ;
2012-12-06 04:46:09 -04:00
// leave a message that it should be active for two event loop cycles
_trigger_counter = 1 ;
2012-06-13 16:00:20 -03:00
}
2012-06-17 17:53:54 -03:00
/// single entry point to take pictures
2012-06-13 16:00:20 -03:00
void
AP_Camera : : trigger_pic ( )
{
2012-12-06 04:46:09 -04:00
switch ( _trigger_type )
2012-08-17 03:09:29 -03:00
{
2012-12-06 04:46:09 -04:00
case AP_CAMERA_TRIGGER_TYPE_SERVO :
2012-08-17 03:09:29 -03:00
servo_pic ( ) ; // Servo operated camera
break ;
2012-12-06 04:46:09 -04:00
case AP_CAMERA_TRIGGER_TYPE_RELAY :
2012-08-17 03:09:29 -03:00
relay_pic ( ) ; // basic relay activation
break ;
2012-12-06 04:46:09 -04:00
case AP_CAMERA_TRIGGER_TYPE_THROTTLE_OFF_TIME :
2012-08-17 03:09:29 -03:00
throttle_pic ( ) ; // pictures blurry? use this trigger. Turns off the throttle until for # of cycles of medium loop then takes the picture and re-enables the throttle.
break ;
2012-12-06 04:46:09 -04:00
case AP_CAMERA_TRIGGER_TYPE_WP_DISTANCE :
2012-08-17 03:09:29 -03:00
distance_pic ( ) ; // pictures blurry? use this trigger. Turns off the throttle until closer to waypoint then takes the picture and re-enables the throttle.
break ;
2012-12-06 04:46:09 -04:00
case AP_CAMERA_TRIGGER_TYPE_TRANSISTOR :
transistor_pic ( ) ; // hacked the circuit to run a transistor? use this trigger to send output.
2012-08-17 03:09:29 -03:00
break ;
}
2012-06-13 16:00:20 -03:00
}
2012-06-17 17:53:54 -03:00
/// de-activate the trigger after some delay, but without using a delay() function
2012-12-06 04:46:09 -04:00
/// should be called at 50hz
2012-06-13 16:00:20 -03:00
void
AP_Camera : : trigger_pic_cleanup ( )
{
2012-12-06 04:46:09 -04:00
if ( _trigger_counter ) {
_trigger_counter - - ;
} else {
switch ( _trigger_type ) {
case AP_CAMERA_TRIGGER_TYPE_SERVO :
case AP_CAMERA_TRIGGER_TYPE_THROTTLE_OFF_TIME :
case AP_CAMERA_TRIGGER_TYPE_WP_DISTANCE :
RC_Channel_aux : : set_radio ( RC_Channel_aux : : k_cam_trigger , _servo_off_pwm ) ;
break ;
case AP_CAMERA_TRIGGER_TYPE_RELAY :
relay . off ( ) ;
break ;
case AP_CAMERA_TRIGGER_TYPE_TRANSISTOR :
2012-12-12 15:48:01 -04:00
hal . gpio - > write ( AP_CAMERA_TRANSISTOR_PIN , 0 ) ;
2012-12-06 04:46:09 -04:00
break ;
2012-08-17 03:09:29 -03:00
}
}
2012-06-13 16:00:20 -03:00
}
2012-06-17 17:53:54 -03:00
/// decode MavLink that configures camera
2012-06-13 16:00:20 -03:00
void
AP_Camera : : configure_msg ( mavlink_message_t * msg )
{
2012-08-17 03:09:29 -03:00
__mavlink_digicam_configure_t packet ;
mavlink_msg_digicam_configure_decode ( msg , & packet ) ;
if ( mavlink_check_target ( packet . target_system , packet . target_component ) ) {
// not for us
return ;
}
// TODO do something with these values
/*
* packet . aperture
* packet . command_id
* packet . engine_cut_off
* packet . exposure_type
* packet . extra_param
* packet . extra_value
* packet . iso
* packet . mode
* packet . shutter_speed
*/
// echo the message to the ArduCam OSD camera control board
// for more info see: http://code.google.com/p/arducam-osd/
// TODO is it connected to MAVLINK_COMM_3 ?
mavlink_msg_digicam_configure_send ( MAVLINK_COMM_3 , packet . target_system , packet . target_component , packet . mode , packet . shutter_speed , packet . aperture , packet . iso , packet . exposure_type , packet . command_id , packet . engine_cut_off , packet . extra_param , packet . extra_value ) ;
2012-06-13 16:00:20 -03:00
}
2012-06-17 17:53:54 -03:00
/// decode MavLink that controls camera
2012-06-13 16:00:20 -03:00
void
AP_Camera : : control_msg ( mavlink_message_t * msg )
{
2012-08-17 03:09:29 -03:00
__mavlink_digicam_control_t packet ;
mavlink_msg_digicam_control_decode ( msg , & packet ) ;
if ( mavlink_check_target ( packet . target_system , packet . target_component ) ) {
// not for us
return ;
}
// TODO do something with these values
/*
* packet . command_id
* packet . extra_param
* packet . extra_value
* packet . focus_lock
* packet . session
* packet . shot
* packet . zoom_pos
* packet . zoom_step
*/
if ( packet . shot )
{
trigger_pic ( ) ;
}
// echo the message to the ArduCam OSD camera control board
// for more info see: http://code.google.com/p/arducam-osd/
// TODO is it connected to MAVLINK_COMM_3 ?
mavlink_msg_digicam_control_send ( MAVLINK_COMM_3 , packet . target_system , packet . target_component , packet . session , packet . zoom_pos , packet . zoom_step , packet . focus_lock , packet . shot , packet . command_id , packet . extra_param , packet . extra_value ) ;
2012-06-13 16:00:20 -03:00
}