1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /*
- * BSD 2-Clause License
- * Copyright (c) 2022, LiteEMF
- * All rights reserved.
- * This software component is licensed by LiteEMF under BSD 2-Clause license,
- * the "License"; You may not use this file except in compliance with the
- * License. You may obtain a copy of the License at:
- * opensource.org/licenses/BSD-2-Clause
- *
- */
- /************************************************************************************************************
- ** Description:
- ************************************************************************************************************/
- #include "api/api_tick.h"
- /******************************************************************************************************
- ** Defined
- *******************************************************************************************************/
- /******************************************************************************************************
- ** static Parameters
- *******************************************************************************************************/
- /******************************************************************************************************
- ** public Parameters
- *******************************************************************************************************/
- /*****************************************************************************************************
- ** static Function
- ******************************************************************************************************/
- /*****************************************************************************************************
- ** Function
- ******************************************************************************************************/
- /*******************************************************************
- ** Parameters:
- ** Returns:
- ** Description:
- *******************************************************************/
- void hal_delay_ns(uint32_t ns)
- {
- UNUSED_PARAMETER(ns);
- }
- void hal_delay_us(uint32_t us)
- {
- hal_delay_ns(1000*us);
- }
- void hal_delay_ms(uint32_t ms)
- {
- hal_delay_us(1000*ms);
- }
- void hal_os_delay_ms(uint32_t ms)
- {
- UNUSED_PARAMETER(ms);
- }
- void hal_tick_init(void)
- {
- }
|