@reyalp I tracked down a 'strangeness' with my M10 camera bracketing script.
All is well if I'm using an M lens.
If I use a fully manual lens, the script gets as far as the following function and stops.
function myshoot()
local prevcnt = hook_shoot.count()
local rawprevcnt = hook_raw.count()
press 'shoot_full_only'
repeat sleep(10) until prevcnt ~= hook_shoot.count()
release 'shoot_full_only'
repeat sleep(10) until rawprevcnt ~= hook_raw.count()
end
Are you aware of any reason this should be the case?