1 /*
2  * Copyright 2023 NXP
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 #ifndef _USB_DEVICE_HSDCD_CONFIG_H_
7 #define _USB_DEVICE_HSDCD_CONFIG_H_
8 /*******************************************************************************
9  * Definitions
10  ******************************************************************************/
11 
12 /*${macro:start}*/
13 /* USB DCD config*/
14 
15 /*! @brief The clock speed, Numerical Value of Clock Speed in Binary. */
16 /*The valid clock range is from 1 to 1023 when clock unit is MHz and 4 to 1023 when clock unit is kHz.this value depend
17  * on board desgin, different board may has different value*/
18 /*  This template provides default value 0, please set appropriate vaule referring to the existed usb_device_hid_mouse demo in SDK */
19 #define USB_HSDCD_CLOCK_SPEED (0U)
20 
21 /*${macro:end}*/
22 
23 #endif /* _USB_DEVICE_HSDCD_CONFIG_H_ */
24