I’ve been reading over the example C programms to get a feel for it and came across this line in the clockbox:
unsigned char mclock_ctr_measures; // counts the measures (up to 65535)
This doesn’t make sense to me, a char is usually an 8 bit quantity and I don’t see how you get 65535 out of an unsigned char. Should this be an unsigned int or is there a separate variable that is the “upper byte” or some such?
John S.