Is there a delay function available that does not use millis() which itself makes use of a timer? Does not need to be hyper-exact.
Asked
Active
Viewed 614 times
delayMicroseconds()does not acceptlong int(32-bits) but onlyunsigned int(16-bits), hence the maximum you can pass it is65535. – jfpoilpret Aug 03 '14 at 13:03