File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -329,7 +329,7 @@ uint32_t serial_bytes_available(void) {
329
329
#if CIRCUITPY_USB
330
330
count += tud_cdc_available ();
331
331
#endif
332
-
332
+
333
333
// Board-specific serial input.
334
334
count += board_serial_bytes_available ();
335
335
Original file line number Diff line number Diff line change @@ -61,6 +61,10 @@ bool port_serial_connected(void);
61
61
char port_serial_read (void );
62
62
uint32_t port_serial_bytes_available (void );
63
63
void port_serial_write_substring (const char * text , uint32_t length );
64
+ void board_serial_early_init (void );
65
+ void board_serial_init (void );
66
+ bool board_serial_connected (void );
67
+ char board_serial_read (void );
64
68
uint32_t board_serial_bytes_available (void );
65
69
void board_serial_write_substring (const char * text , uint32_t length );
66
70
You can’t perform that action at this time.
0 commit comments