1
0
mirror of https://github.com/mist-devel/mist-firmware.git synced 2026-01-13 15:17:43 +00:00
mist-devel.mist-firmware/cdc_control.h
2014-02-28 15:32:27 +00:00

17 lines
398 B
C

#ifndef CDC_CONTROL_H
#define CDC_CONTROL_H
#define CDC_REDIRECT_NONE 0x00
#define CDC_REDIRECT_CONTROL 0x01
#define CDC_REDIRECT_DEBUG 0x02
#define CDC_REDIRECT_RS232 0x03
#define CDC_REDIRECT_PARALLEL 0x04
#define CDC_REDIRECT_MIDI 0x05
void cdc_control_open(void);
void cdc_control_poll(void);
void cdc_control_tx(char c);
void cdc_control_flush(void);
#endif // CDC_CONTROL_H