123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- #ifndef __USB_DEVICE__H__
- #define __USB_DEVICE__H__
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "stm32f4xx.h"
- #include "stm32f4xx_hal.h"
- #include "usbd_def.h"
- void MX_USB_DEVICE_Init(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|