|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- #ifndef usb_serial_h__
- #define usb_serial_h__
-
- #include <stdint.h>
-
- #ifdef __cplusplus
- extern "C"{
- #endif
-
-
-
- #define VENDOR_ID 0x16C0
- #define PRODUCT_ID 0x0482
- #define TRANSMIT_FLUSH_TIMEOUT 4
- #define TRANSMIT_TIMEOUT 25
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #if defined(__AVR_ATmega32U4__) || defined(__AVR_AT90USB646__) || defined(__AVR_AT90USB1286__)
-
-
-
-
-
-
- #define STR_PRODUCT L"Teensy Keyboard/Mouse/Joystick"
- #define ENDPOINT0_SIZE 64
-
- #define DEBUG_INTERFACE 2
- #define DEBUG_TX_ENDPOINT 1
- #define DEBUG_TX_SIZE 64
- #define DEBUG_TX_BUFFER EP_DOUBLE_BUFFER
- #define DEBUG_TX_INTERVAL 1
- #define DEBUG_RX_ENDPOINT 2
- #define DEBUG_RX_SIZE 32
- #define DEBUG_RX_BUFFER EP_DOUBLE_BUFFER
- #define DEBUG_RX_INTERVAL 2
-
- #define KEYBOARD_INTERFACE 0
- #define KEYBOARD_ENDPOINT 3
- #define KEYBOARD_SIZE 8
- #define KEYBOARD_BUFFER EP_DOUBLE_BUFFER
- #define KEYBOARD_INTERVAL 1
-
- #define MOUSE_INTERFACE 1
- #define MOUSE_ENDPOINT 4
- #define MOUSE_SIZE 8
- #define MOUSE_BUFFER EP_DOUBLE_BUFFER
- #define MOUSE_INTERVAL 1
-
- #define JOYSTICK_INTERFACE 3
- #define JOYSTICK_ENDPOINT 5
- #define JOYSTICK_SIZE 16
- #define JOYSTICK_BUFFER EP_DOUBLE_BUFFER
- #define JOYSTICK_INTERVAL 2
-
- #define NUM_ENDPOINTS 7
- #define NUM_INTERFACE 4
-
- #elif defined(__AVR_AT90USB162__)
-
- #define STR_PRODUCT L"Teensy Keyboard/Mouse"
- #define ENDPOINT0_SIZE 32
-
- #define DEBUG_INTERFACE 2
- #define DEBUG_TX_ENDPOINT 1
- #define DEBUG_TX_SIZE 64
- #define DEBUG_TX_BUFFER EP_SINGLE_BUFFER
- #define DEBUG_TX_INTERVAL 2
- #define DEBUG_RX_ENDPOINT 2
- #define DEBUG_RX_SIZE 32
- #define DEBUG_RX_BUFFER EP_SINGLE_BUFFER
- #define DEBUG_RX_INTERVAL 8
-
- #define KEYBOARD_INTERFACE 0
- #define KEYBOARD_ENDPOINT 3
- #define KEYBOARD_SIZE 8
- #define KEYBOARD_BUFFER EP_DOUBLE_BUFFER
- #define KEYBOARD_INTERVAL 1
-
- #define MOUSE_INTERFACE 1
- #define MOUSE_ENDPOINT 4
- #define MOUSE_SIZE 8
- #define MOUSE_BUFFER EP_DOUBLE_BUFFER
- #define MOUSE_INTERVAL 8
-
- #define NUM_ENDPOINTS 5
- #define NUM_INTERFACE 3
-
- #endif
-
-
-
-
- void usb_init(void);
- void usb_shutdown(void);
-
-
- extern volatile uint8_t usb_configuration;
- extern volatile uint8_t usb_suspended;
- extern volatile uint8_t debug_flush_timer;
- extern uint8_t keyboard_report_data[];
- extern uint8_t keyboard_idle_count;
- extern volatile uint8_t keyboard_leds;
- extern uint8_t mouse_buttons;
- #ifdef JOYSTICK_INTERFACE
- extern uint8_t joystick_report_data[12];
- #endif
-
-
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
|