In a code project I'm currently developing, the following code works:
result = EdsSendCommand(camera,kEdsCameraCommand_TakePicture,0);
result is EDS_ERR_OK and the shutter clicks.
When I change the code (literally inline) to:
result = EdsSendCommand(camera,kEdsCameraCommand_BulbStart,0);
the call fails and result is EDS_ERR_INVALID_PARAMETER.
I've tried (successfully) locking the camera UI first, but it made no difference, the call still fails. I've tried everything with the camera in BULB mode and in MANUAL mode, no difference.
Can anyone help me? Why is this failing?
Thanks in advance.


