And blocking an ISR is a massive no-no!
Although SoftwareTimer callbacks are not actually ISRs it’s still not advisable to block for longis periodes. With timer callbacks you may also run into stack limitations when a function call internally features other nested calls that may exhaust the stack.
To tell the difference of both potential causes we’d need to know what kind of red blink you see - how many slow blinks after the SOS code?
Ah thanks. Was not aware of it blocking! What function can I call instead? There’s no millis() command or is there? I’m just looking to get the number of milliseconds since boot.