diff options
| author | hathach <[email protected]> | 2013-09-10 10:43:24 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-09-10 10:43:24 +0700 |
| commit | 14a8e266977874de387b096ce43b45d7a3363041 (patch) | |
| tree | 90fbbb8d3707bc7cd4f9d40357d1189579946b63 /tinyusb | |
| parent | 7404894d6d2b9e38f32aa62d7dff030d213c873b (diff) | |
able to get blinky + greeting
Diffstat (limited to 'tinyusb')
| -rw-r--r-- | tinyusb/osal/osal_none.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tinyusb/osal/osal_none.h b/tinyusb/osal/osal_none.h index 4eddffd1e..acc5bdb07 100644 --- a/tinyusb/osal/osal_none.h +++ b/tinyusb/osal/osal_none.h @@ -68,8 +68,8 @@ static inline void osal_tick_tock(void) osal_tick_current++; } -static inline volatile uint32_t osal_tick_get(void) ATTR_ALWAYS_INLINE; -static inline volatile uint32_t osal_tick_get(void) +static inline uint32_t osal_tick_get(void) ATTR_ALWAYS_INLINE; +static inline uint32_t osal_tick_get(void) { return osal_tick_current; } |
