Skip to content

Commit 7939d71

Browse files
committed
Merge branch 'main' of https://github.com/lvgl-micropython/lvgl_micropython into update_rotation
2 parents 05ed86a + 98331a3 commit 7939d71

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

builder/esp32.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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',

0 commit comments

Comments
 (0)