From 14bbae6d1cfe953874045e138ebc2f2251b5e354 Mon Sep 17 00:00:00 2001 From: Dave Stevenson <6by9@users.noreply.github.com> Date: Fri, 1 Jan 2016 19:23:30 +0000 Subject: [PATCH] RaspiCamControl: State EV step size https://github.com/raspberrypi/userland/issues/34 Step size is 1/6ths to support either 1/3rds or 1/2 steps. --- host_applications/linux/apps/raspicam/RaspiCamControl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host_applications/linux/apps/raspicam/RaspiCamControl.c b/host_applications/linux/apps/raspicam/RaspiCamControl.c index 6379a56a3..3f3ccd201 100755 --- a/host_applications/linux/apps/raspicam/RaspiCamControl.c +++ b/host_applications/linux/apps/raspicam/RaspiCamControl.c @@ -169,7 +169,7 @@ static COMMAND_LIST cmdline_commands[] = {CommandSaturation, "-saturation","sa", "Set image saturation (-100 to 100)", 1}, {CommandISO, "-ISO", "ISO","Set capture ISO", 1}, {CommandVideoStab, "-vstab", "vs", "Turn on video stabilisation", 0}, - {CommandEVComp, "-ev", "ev", "Set EV compensation", 1}, + {CommandEVComp, "-ev", "ev", "Set EV compensation - steps of 1/6 stop", 1}, {CommandExposure, "-exposure", "ex", "Set exposure mode (see Notes)", 1}, {CommandAWB, "-awb", "awb","Set AWB mode (see Notes)", 1}, {CommandImageFX, "-imxfx", "ifx","Set image effect (see Notes)", 1},