We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ae2453 commit ede837dCopy full SHA for ede837d
hal/targets/hal/TARGET_NORDIC/TARGET_NRF5/sdk/drivers_nrf/delay/nrf_delay.h
@@ -159,8 +159,8 @@ __STATIC_INLINE void nrf_delay_us(uint32_t volatile number_of_us)
159
160
#elif defined ( __GNUC__ )
161
162
-static void __INLINE nrf_delay_us(uint32_t volatile number_of_us) __attribute__((always_inline));
163
-static void __INLINE nrf_delay_us(uint32_t volatile number_of_us)
+static __INLINE void nrf_delay_us(uint32_t volatile number_of_us) __attribute__((always_inline));
+static __INLINE void nrf_delay_us(uint32_t volatile number_of_us)
164
{
165
register uint32_t delay __ASM ("r0") = number_of_us;
166
__ASM volatile (
0 commit comments