We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ca0a9f commit d7f69f3Copy full SHA for d7f69f3
builder/esp32.py
@@ -1123,9 +1123,14 @@ def update_mpconfigboard():
1123
if custom_board_path is not None:
1124
return
1125
1126
+ if board == 'ESP32_GENERIC_P4' and board_variant:
1127
+ filename = f'mpconfigvariant_{board_variant}.cmake'
1128
+ else:
1129
+ filename = 'mpconfigboard.cmake'
1130
+
1131
mpconfigboard_cmake_path = (
1132
'lib/micropython/ports/esp32/boards/'
- f'{board}/mpconfigboard.cmake'
1133
+ f'{board}/{filename}'
1134
)
1135
1136
data = read_file('esp32', mpconfigboard_cmake_path)
0 commit comments