|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- #ifndef usb_serial_h__
- #define usb_serial_h__
-
- #include <stdint.h>
-
- #ifdef __cplusplus
- extern "C"{
- #endif
-
- /**************************************************************************
- *
- * Configurable Options
- *
- **************************************************************************/
-
- #define VENDOR_ID 0x16C0
- #define PRODUCT_ID 0x0486
- #define RAWHID_USAGE_PAGE 0xFFAB // recommended: 0xFF00 to 0xFFFF
- #define RAWHID_USAGE 0x0200 // recommended: 0x0100 to 0xFFFF
-
- // These determine how much USB bandwidth is allocated (1=fastest)
- #define RAWHID_TX_INTERVAL 1
- #define RAWHID_RX_INTERVAL 1
- #define DEBUG_TX_INTERVAL 1
- #define DEBUG_RX_INTERVAL 2
-
- #define TRANSMIT_FLUSH_TIMEOUT 4 /* in milliseconds */
- #define TRANSMIT_TIMEOUT 25 /* in milliseconds */
-
-
- /**************************************************************************
- *
- * Endpoint Buffer Configuration
- *
- **************************************************************************/
-
- #define STR_PRODUCT L"Teensyduino RawHID Device"
- #define STR_RAWHID L"Teensyduino RawHID"
- #define STR_DEBUG L"Emulated Arduino Serial"
- #define ENDPOINT0_SIZE 64
-
- // Some operating systems, especially Windows, may cache USB device
- // info. Changes to the device name may not update on the same
- // computer unless the vendor or product ID numbers change, or the
- // "bcdDevice" revision code is increased.
-
-
- #define RAWHID_INTERFACE 0
- #define RAWHID_TX_ENDPOINT 3
- #define RAWHID_TX_BUFFER EP_DOUBLE_BUFFER
- #define RAWHID_TX_SIZE 64
- #define RAWHID_RX_ENDPOINT 4
- #define RAWHID_RX_BUFFER EP_DOUBLE_BUFFER
- #define RAWHID_RX_SIZE 64
-
- #define DEBUG_INTERFACE 1
- #define DEBUG_TX_ENDPOINT 1
- #define DEBUG_TX_SIZE 64
- #define DEBUG_TX_BUFFER EP_DOUBLE_BUFFER
- #define DEBUG_RX_ENDPOINT 2
- #define DEBUG_RX_SIZE 32
- #define DEBUG_RX_BUFFER EP_DOUBLE_BUFFER
-
- #define NUM_ENDPOINTS 5
- #define NUM_INTERFACE 2
-
-
- // setup
- void usb_init(void); // initialize everything
- void usb_shutdown(void); // shut off USB
-
- // variables
- extern volatile uint8_t usb_configuration;
- extern volatile uint8_t usb_suspended;
- extern volatile uint8_t debug_flush_timer;
- extern volatile uint16_t rawhid_rx_timeout_count;
- extern volatile uint16_t rawhid_tx_timeout_count;
-
- #ifdef __cplusplus
- } // extern "C"
- #endif
-
- #endif
|