1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*
- * 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_system.h"
- /******************************************************************************************************
- ** Defined
- *******************************************************************************************************/
- /*****************************************************************************************************
- ** Function
- ******************************************************************************************************/
- /*******************************************************************
- ** Parameters:
- ** Returns:
- ** Description:
- *******************************************************************/
- bool hal_set_sysclk(emf_clk_t clk, uint32_t freq)
- {
- UNUSED_PARAMETER(clk);
- UNUSED_PARAMETER(freq);
- return true;
- }
- /*******************************************************************
- ** Parameters:
- ** Returns:
- ** Description:
- *******************************************************************/
- uint32_t hal_get_sysclk(emf_clk_t clk)
- {
- UNUSED_PARAMETER(clk);
- return HAL_SYS_FREQ;
- }
- bool hal_get_uuid(uint8_t *uuid, uint8_t len)
- {
- UNUSED_PARAMETER(uuid);
- UNUSED_PARAMETER(len);
- return false;
- }
|