15 lines
164 B
C
15 lines
164 B
C
#ifndef __USB_H
|
|
#define __USB_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void usb_isr(void);
|
|
void usb_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |