mirror of
https://github.com/martinloren/Artery-AT32-PlatformIO.git
synced 2026-05-21 09:22:14 +00:00
35 lines
1.1 KiB
C
35 lines
1.1 KiB
C
/**
|
|
******************************************************************************
|
|
* File : usb_lib.h
|
|
* Version: V1.2.2
|
|
* Date : 2020-07-01
|
|
* Brief : USB library include files
|
|
******************************************************************************
|
|
*/
|
|
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __USB_LIB_H
|
|
#define __USB_LIB_H
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include <at32f4xx.h>
|
|
#include "usb_type.h"
|
|
#include "usb_regs.h"
|
|
#include "usb_def.h"
|
|
#include "usb_core.h"
|
|
#include "usb_init.h"
|
|
#include "usb_mem.h"
|
|
#include "usb_int.h"
|
|
|
|
|
|
/* Exported types ------------------------------------------------------------*/
|
|
/* Exported constants --------------------------------------------------------*/
|
|
/* Exported macro ------------------------------------------------------------*/
|
|
/* Exported functions ------------------------------------------------------- */
|
|
/* External variables --------------------------------------------------------*/
|
|
|
|
#endif /* __USB_LIB_H */
|
|
|
|
|