rename tusb_tick_get to hal_tick_get

This commit is contained in:
hathach
2018-03-07 23:40:54 +07:00
parent d0312805ba
commit bd5f9ecdec
4 changed files with 25 additions and 5 deletions

View File

@@ -48,14 +48,14 @@ void SysTick_Handler (void)
system_ticks++;
}
uint32_t tusb_tick_get(void)
uint32_t hal_tick_get(void)
{
return system_ticks;
}
#endif
#if 1
#if 0
//--------------------------------------------------------------------+
// BLINKING TASK
//--------------------------------------------------------------------+

View File

@@ -154,6 +154,7 @@ void board_uart_putchar(uint8_t c);
/** @} */
#if 0
//------------- Board Application -------------//
void led_blinking_task(void* param);
@@ -164,6 +165,7 @@ void led_blinking_init(void);
* \param[in] ms The interval between on and off.
*/
void led_blinking_set_interval(uint32_t ms);
#endif
#ifdef __cplusplus
}