2022-10-20 12:30:14 +00:00
|
|
|
#ifndef USB_H_
|
|
|
|
#define USB_H_
|
|
|
|
|
2022-11-13 20:12:33 +00:00
|
|
|
#include "usb_audio.h"
|
|
|
|
#include "usb_serial.h"
|
2023-03-11 09:04:51 +00:00
|
|
|
#include "usb_dfu.h"
|
2022-11-13 20:12:33 +00:00
|
|
|
|
|
|
|
#define USB_SOF_TIMER TIM2
|
2023-01-08 14:32:30 +00:00
|
|
|
#define USB_SOF_TIMER_CNT TIM2->CNT
|
2022-11-13 20:12:33 +00:00
|
|
|
#define USB_SOF_TIMER_HZ 72000000UL
|
|
|
|
|
2023-03-11 09:04:51 +00:00
|
|
|
void USB_Reset(void);
|
2022-10-20 12:30:14 +00:00
|
|
|
void USB_Init(void);
|
|
|
|
void USB_Task(void);
|
|
|
|
|
|
|
|
#endif /* USB_H_ */
|