Merge develop into main (#161)

- Fix CoreS3 boot failure (I2C now returns bool instead of err_result_t)
- Flashing scripts now erase before flashing (to ensure it's a clean install)
- M5Stack Core2 and CoreS3: Experimental SPI speed increase
This commit is contained in:
Ken Van Hoeylandt
2025-01-12 00:38:19 +01:00
committed by GitHub
parent ceec04b34c
commit 431fa84ffb
7 changed files with 19 additions and 9 deletions
+2
View File
@@ -13,6 +13,8 @@ $jsonClean = $json.flash_files -replace '[\{\}\@\;]', ''
$jsonClean = $jsonClean -replace '[\=]', ' '
cd Binaries
$command = "esptool --port $port erase_flash"
Invoke-Expression $command
$command = "esptool --port $port -b 460800 write_flash $jsonClean"
Invoke-Expression $command
cd ..