From d91cadb11a9fcf046e80ba398812ee3f285158c0 Mon Sep 17 00:00:00 2001 From: Marti Bolivar Date: Wed, 7 Sep 2011 16:08:34 -0400 Subject: Update outdated stm32.h usages. stm32.h has been updated to prefix its definitions. Update the rest of libmaple to take this into account. --- libmaple/delay.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libmaple/delay.h') 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--; -- cgit v1.2.3