Hi,
For certain astrophotography purposes I need very precise time registration (~0.001s). So, my code is like follows:
time_start = CurrentTime();
startExposure(); // <-- function from ASI SDK
do {} while (getExpStatus() == EXP_WORKING);
time_end = CurrentTime();
The questions are how much time is between:
a) calling startExposure() and first photon is collected,
b) last photon collected and getExpStatus() returns EXP_SUCCESS.
Even if it's impossible to give precise numbers (?) maybe there is any method for estimation?
Kind Regards,
Gajowy