mirror of
https://github.com/martinloren/Artery-AT32-PlatformIO.git
synced 2026-05-21 09:22:14 +00:00
29 lines
998 B
C
29 lines
998 B
C
|
|
/**
|
||
|
|
******************************************************************************
|
||
|
|
* File : usb_int.h
|
||
|
|
* Version: V1.2.2
|
||
|
|
* Date : 2020-07-01
|
||
|
|
* Brief : Endpoint CTRF (Low and High) interrupt's service routines prototypes
|
||
|
|
******************************************************************************
|
||
|
|
*/
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
||
|
|
#ifndef __USB_INT_H
|
||
|
|
#define __USB_INT_H
|
||
|
|
|
||
|
|
/* Includes ------------------------------------------------------------------*/
|
||
|
|
/* Exported types ------------------------------------------------------------*/
|
||
|
|
/* Exported constants --------------------------------------------------------*/
|
||
|
|
/* Exported macro ------------------------------------------------------------*/
|
||
|
|
/* Exported functions ------------------------------------------------------- */
|
||
|
|
void CTR_LP(void);
|
||
|
|
void CTR_HP(void);
|
||
|
|
|
||
|
|
/* External variables --------------------------------------------------------*/
|
||
|
|
|
||
|
|
#endif /* __USB_INT_H */
|
||
|
|
|
||
|
|
|