>>2939942
Is, in the arduino environment, this
void loop() { do stuff}
any different from
void loop() {while(1){do stuff)}}
?
I have just written my stuff using delayMicroseconds which is bad as it again has a resolution of maybe 4 uS but i wanted to get out of paralysis quick
I've then caught a glitch. See picrel.
I was concerned over arduino related stuff like watchdogs or similar fucking my shit up.
So I tried while(1) to prevent it from ever handibg back and I havent been able to catch another glitch which doesnt mean there is none.
Glitches would be bad.