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 68b2cee commit dc37c4aCopy full SHA for dc37c4a
builder/frameworks/espidf.py
@@ -234,7 +234,7 @@ def get_MD5_hash(phrase):
234
sdkconfig_defconfig_url = "https://github.com/pioarduino/esp32-arduino-lib-builder/raw/refs/heads/release/v5.3/configs/defconfig." + mcu
235
defconfig_mcu = join(ARDUINO_FRMWRK_LIB_DIR,mcu,"defconfig." + mcu)
236
response = request.urlretrieve(sdkconfig_defconfig_url, defconfig_mcu)
237
- with open(defconfig_mcu, 'r') as f1, open(sdkconfig_mcu, 'w') as f2:
+ with open(defconfig_mcu, 'r') as f1, open(sdkconfig_mcu, 'a') as f2:
238
f2.write(f1.read())
239
with open(sdkconfig_src, 'r') as file:
240
file_lines = file.readlines()
0 commit comments