mirror of
https://github.com/mist-devel/mist-firmware.git
synced 2026-01-11 23:43:04 +00:00
16 lines
369 B
C
16 lines
369 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_poll(void);
|
|
void cdc_control_tx(char c);
|
|
void cdc_control_flush(void);
|
|
|
|
#endif // CDC_CONTROL_H
|