I suspect i know the answer to this question, but I'll ask it anyway.
Background, I have a sketch using interrupts; first interrupt records micros(), second interrupt records micros() again to get the interval between.
The interval is compared to a target and causes a stepper to move CW or CCW depending on greater or less than target.
All works as expected on the Uno. I transferred the sketch to a Pro Mini and now find the sketch works as though the target is half.
The Uno is 16Mhz, the Mini is 8 Mhz.
The question is does the Mini handle micros() same as the Uno? (my thought is that it would).