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