You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
340 B
20 lines
340 B
14 years ago
|
#ifndef USB_DEBUG_H
|
||
|
#define USB_DEBUG_H 1
|
||
|
|
||
|
#include <stdint.h>
|
||
14 years ago
|
#include "usb.h"
|
||
14 years ago
|
|
||
|
|
||
14 years ago
|
#define DEBUG_INTERFACE 2
|
||
|
#define DEBUG_TX_ENDPOINT 3
|
||
14 years ago
|
#define DEBUG_TX_SIZE 32
|
||
|
#define DEBUG_TX_BUFFER EP_DOUBLE_BUFFER
|
||
|
|
||
|
|
||
|
extern volatile uint8_t debug_flush_timer;
|
||
|
|
||
|
|
||
|
void usb_debug_flush_output(void); // immediately transmit any buffered output
|
||
|
|
||
|
#endif
|