12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #ifndef USB_EXTRA_H
- #define USB_EXTRA_H 1
- #include <stdint.h>
- #include "usb.h"
- #define EXTRA_INTERFACE 3
- #define EXTRA_ENDPOINT 4
- #define EXTRA_SIZE 8
- #define EXTRA_BUFFER EP_DOUBLE_BUFFER
- int8_t usb_extra_consumer_send(uint16_t bits);
- int8_t usb_extra_system_send(uint16_t bits);
- #endif
|