File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -1092,6 +1092,8 @@ def update_mpconfigport():
10921092 )
10931093
10941094 if custom_board_path is None :
1095+
1096+ # doesn't work
10951097 repl_data = [
10961098 # '#ifndef USB_SERIAL_JTAG_PACKET_SZ_BYTES',
10971099 # '#define USB_SERIAL_JTAG_PACKET_SZ_BYTES (64)',
@@ -1103,6 +1105,7 @@ def update_mpconfigport():
11031105 f'#define MICROPY_HW_UART_REPL_BAUD ({ uart_repl_bitrate } )'
11041106 ]
11051107
1108+ # doesn't work
11061109 if enable_uart_repl is not None :
11071110 repl_data .extend ([
11081111 '#ifdef MICROPY_HW_ENABLE_UART_REPL' ,
@@ -1111,6 +1114,7 @@ def update_mpconfigport():
11111114 f'#define MICROPY_HW_ENABLE_UART_REPL ({ int (enable_uart_repl .lower () == "y" )} )'
11121115 ])
11131116
1117+ # doesn't work
11141118 if enable_cdc_repl is not None :
11151119 repl_data .extend ([
11161120 '#ifdef MICROPY_HW_ENABLE_USBDEV' ,
You can’t perform that action at this time.
0 commit comments