rusefi-1/firmware/hw_layer/serial_over_usb/usbconsole.h

26 lines
374 B
C
Raw Normal View History

2015-07-10 06:01:56 -07:00
/**
* @file usbconsole.h
*
* @date Oct 14, 2013
2020-01-13 18:57:43 -08:00
* @author Andrey Belomutskiy, (c) 2012-2020
2015-07-10 06:01:56 -07:00
*/
#ifndef USBCONSOLE_H_
#define USBCONSOLE_H_
2019-07-27 17:18:20 -07:00
#define USB_SERIAL_DRIVER SD2
2015-07-10 06:01:56 -07:00
#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */
void usb_serial_start(void);
bool is_usb_serial_ready(void);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* USBCONSOLE_H_ */