1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
tmk_keyboard_custom/pjrc/usb_debug.h

20 lines
340 B
C
Raw Normal View History

#ifndef USB_DEBUG_H
#define USB_DEBUG_H 1
#include <stdint.h>
2010-09-30 05:17:01 +00:00
#include "usb.h"
2010-09-30 05:17:01 +00:00
#define DEBUG_INTERFACE 2
#define DEBUG_TX_ENDPOINT 3
#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