1 /*
2  * Copyright (c) 2016, Freescale Semiconductor, Inc.
3  * Copyright 2016 - 2018 , NXP
4  * All rights reserved.
5  *
6  *
7  * SPDX-License-Identifier: BSD-3-Clause
8  */
9 
10 #ifndef __FSL_FRO_CALIB_H_
11 #define __FSL_FRO_CALIB_H_
12 /* Component ID definition, used by tools. */
13 #ifndef FSL_COMPONENT_ID
14 #define FSL_COMPONENT_ID "platform.drivers.fro_calib"
15 #endif
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
21 /* Returns the version of the FRO Calibration library */
22 unsigned int fro_calib_Get_Lib_Ver(void);
23 
24 /* timer instance */
25 /* timer clock frquency in KHz */
26 ErrorCode_t Chip_TIMER_Instance_Freq(CTIMER_Type *base, unsigned int timerFreq);
27 
28 /* USB_SOF_Event */
29 ErrorCode_t USB_SOF_Event(USBD_HANDLE_T hUsb);
30 
31 /**
32  * @}
33  */
34 
35 #ifdef __cplusplus
36 }
37 #endif
38 
39 #endif /* __FSL_FRO_CALIB_H_ */
40