We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae549fc commit 6885ffcCopy full SHA for 6885ffc
1 file changed
ports/litex/mphalport.c
@@ -60,6 +60,10 @@ void mp_hal_delay_ms(mp_uint_t delay) {
60
}
61
62
63
+void mp_hal_delay_us(mp_uint_t delay) {
64
+ mp_hal_delay_ms(delay / 1000);
65
+}
66
+
67
extern void SysTick_Handler(void);
68
69
__attribute__((section(".ramtext")))
0 commit comments