split wait for 50us (value 50000 doesn't work for 20MHz nodes).

This commit is contained in:
Martin Preuss
2025-08-18 18:05:12 +02:00
parent d9e7d4df81
commit 7c01aa255f

View File

@@ -18,7 +18,8 @@
; @clobbers r22
Utils_WaitFor50MicroSecs:
Utils_WaitNanoSecs 50000, 7, r22 ; wait for 50us (minus RCALL and RET)
Utils_WaitNanoSecs 25000, 0, r22 ; wait for 25us
Utils_WaitNanoSecs 25000, 7, r22 ; wait for 25us (minus RCALL and RET)
ret
; @end