1
0
mirror of https://github.com/mist-devel/mist-firmware.git synced 2026-01-11 23:43:04 +00:00
mist-devel.mist-firmware/cdc_control.h
Gyorgy Szombathelyi b7d755f00b Add USB storage device support
Activate with the mist.ini setting: usb_storage=1
2021-11-09 19:16:53 +01:00

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