aboutsummaryrefslogtreecommitdiffstats
path: root/libmaple/delay.h
diff options
context:
space:
mode:
Diffstat (limited to 'libmaple/delay.h')
-rw-r--r--libmaple/delay.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmaple/delay.h b/libmaple/delay.h
index dd68ec6..6f8b8ba 100644
--- a/libmaple/delay.h
+++ b/libmaple/delay.h
@@ -15,7 +15,7 @@
* @param us Number of microseconds to delay.
*/
static inline void delay_us(uint32 us) {
- us *= DELAY_US_MULT;
+ us *= STM32_DELAY_US_MULT;
/* fudge for function call overhead */
us--;