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) {
329329 #if CIRCUITPY_USB
330330 count += tud_cdc_available ();
331331 #endif
332-
332+
333333 // Board-specific serial input.
334334 count += board_serial_bytes_available ();
335335
Original file line number Diff line number Diff line change @@ -61,6 +61,10 @@ bool port_serial_connected(void);
6161char port_serial_read (void );
6262uint32_t port_serial_bytes_available (void );
6363void 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 );
6468uint32_t board_serial_bytes_available (void );
6569void board_serial_write_substring (const char * text , uint32_t length );
6670
You can’t perform that action at this time.
0 commit comments