A while back I asked Waterwingz if he could alter UI so that it could exceed Canon's parameters, as I understand it cannot be done with scripts running canon's firmware.
this request is just the opposite.......
After thinking about it, i think it is more something to include in advaced image settings, i'm guessing the G series might have similar possibilitys.
That is, if there is interest from others....
Issue:
The M10 i'm currently testing has in P settings a range from 1/4000 to 30 seconds, especially the 30 sec is a bit much with an interval script...i obviously don't do astrophotography.
Request:
Would it be possible to create shutterspeed min and max settings that fall within canon's own min and max settings, like iso range settings?
I thought about testing it myself with an small, simple intervalometer script to see what would be optimal values.
i discovered i've got insufficient knowlegde to make it work, but it may give you an idea of what i am thinking of.
# low_limit_Tv 10 "Limit slowest shutter speed >" { Off 16sec 12 8 4 3 2sec 1.6 1.3 1sec 1/2sec}
-- speed table limit can be extended.
speed_min = low_limit_Tv
speed_table_limit = { 9999, -768, -576, -384, -288 -192, -96, -64, -32, 0, 96 }
speed_min = speed_table_limit[low_limit_Tv+1]
-- limits max exposure under canon firmware limits.
function limit_exposure()
tv96current=get_tv96()
if (tv96current <= speed_min) then
tv96current=speed_min end
return
end