diff --git a/conf/airframes/tudelft/disco.xml b/conf/airframes/tudelft/disco.xml index a6533f37af..43a6fb3b18 100644 --- a/conf/airframes/tudelft/disco.xml +++ b/conf/airframes/tudelft/disco.xml @@ -6,6 +6,24 @@ + + Parrot Disco Photogrammeyty (with bottom camera recoring) + + Checklist: + - tune your servo deflections per airframe (symmetric) + - calibrate your magnetometer for the given battery + - remove previous images before flight + - trigger snapping images manually or in the flightplan + - use Open Drone Map / ODMWeb (or similar) + - make a movie with + + + + + @@ -45,10 +63,27 @@ + + + + + + + + + + + + + + + + + diff --git a/conf/userconf/tudelft/conf.xml b/conf/userconf/tudelft/conf.xml index 14121b1d4c..f05e6b1936 100644 --- a/conf/userconf/tudelft/conf.xml +++ b/conf/userconf/tudelft/conf.xml @@ -139,7 +139,7 @@ telemetry="telemetry/default_fixedwing.xml" flight_plan="flight_plans/basic.xml" settings="settings/fixedwing_basic.xml" - settings_modules="modules/ahrs_float_dcm.xml modules/air_data.xml modules/airspeed_ms45xx_i2c.xml modules/electrical.xml modules/gps.xml modules/gps_ublox.xml modules/gps_ubx_ucenter.xml modules/guidance_full_pid_fw.xml modules/imu_common.xml modules/nav_basic_fw.xml modules/stabilization_adaptive_fw.xml" + settings_modules="modules/ahrs_float_dcm.xml modules/air_data.xml modules/airspeed_ms45xx_i2c.xml modules/bebop_cam.xml modules/electrical.xml modules/geo_mag.xml modules/gps.xml modules/gps_ublox.xml modules/gps_ubx_ucenter.xml modules/guidance_full_pid_fw.xml modules/imu_common.xml modules/nav_basic_fw.xml modules/stabilization_adaptive_fw.xml modules/video_capture.xml" gui_color="blue" /> 320 || MS9v117_CROP_HEIGHT > 240 +#error "MT9V117 crop size too large: set up the sensor for higher resolution" +#endif + + /* Camera structure */ struct video_config_t bottom_camera = { .output_size = { - .w = 240, - .h = 240 + .w = MS9v117_CROP_WIDTH, + .h = MS9v117_CROP_HEIGHT }, .sensor_size = { .w = 320, .h = 240, }, .crop = { - .x = 40, + .x = ((320 - MS9v117_CROP_WIDTH) / 2), .y = 0, - .w = 240, - .h = 240 + .w = MS9v117_CROP_WIDTH, + .h = MS9v117_CROP_HEIGHT }, .dev_name = "/dev/video0", .subdev_name = "/dev/v4l-subdev0",