32 lines
924 B
C
32 lines
924 B
C
/********************************** (C) COPYRIGHT *******************************
|
|
* File Name : usb_lib.h
|
|
* Author : WCH
|
|
* Version : V1.0.0
|
|
* Date : 2021/08/08
|
|
* Description : Library configuration file for USB.
|
|
*********************************************************************************
|
|
* Copyright (c) 2021 Nanjing Qinheng Microelectronics Co., Ltd.
|
|
* Attention: This software (modified or not) and binary are used for
|
|
* microcontroller manufactured by Nanjing Qinheng Microelectronics.
|
|
*******************************************************************************/
|
|
|
|
#ifndef __USB_LIB_H
|
|
#define __USB_LIB_H
|
|
|
|
|
|
|
|
#include "../../usblib/config/hw_config.h"
|
|
|
|
#include "usb_core.h"
|
|
#include "usb_def.h"
|
|
#include "usb_init.h"
|
|
#include "usb_int.h"
|
|
#include "usb_mem.h"
|
|
#include "usb_regs.h"
|
|
#include "usb_sil.h"
|
|
#include "usb_type.h"
|
|
|
|
|
|
|
|
#endif /* __USB_LIB_H */
|