avr: add Utils_WaitFor100MicroSecs

This commit is contained in:
Martin Preuss
2024-09-18 00:09:35 +02:00
parent 9a2a1764d9
commit 3af514d946

View File

@@ -36,3 +36,21 @@ Utils_WaitFor50MicroSecs:
ret
; @end
; ---------------------------------------------------------------------------
; @routine Utils_WaitFor100MicroSecs @global
;
; wait for about 100 microsecs.
;
; @clobbers r22
Utils_WaitFor100MicroSecs:
rcall Utils_WaitFor50MicroSecs
rcall Utils_WaitFor50MicroSecs
ret
; @end