You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
0b32e50365
Now all ports can use pybstdio.c to provide sys.stdin/stdout/stderr, so long as they implement mp_hal_stdin_* and mp_hal_stdout_* functions.
8 lines
274 B
C
8 lines
274 B
C
bool usb_vcp_is_connected(void);
|
|
bool usb_vcp_is_enabled(void);
|
|
int usb_vcp_rx_num(void);
|
|
int usb_vcp_recv_byte(uint8_t *ptr);
|
|
void usb_vcp_send_str(const char* str);
|
|
void usb_vcp_send_strn(const char* str, int len);
|
|
void usb_vcp_send_strn_cooked(const char *str, int len);
|