Skip to content

Commit 04c2d8f

Browse files
committed
Fox SPI example and add proper esptool for PIO CI
1 parent 962c30c commit 04c2d8f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/scripts/on-push.sh

+2
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@ else
106106
replace_script+="data=json.load(fp);"
107107
replace_script+="data['packages']['toolchain-xtensa-esp32']['optional']=True;"
108108
replace_script+="data['packages']['toolchain-xtensa-esp32s3']['optional']=False;"
109+
replace_script+="data['packages']['tool-esptoolpy']['owner']='tasmota';"
110+
replace_script+="data['packages']['tool-esptoolpy']['version']='https://github.com/tasmota/esptool/releases/download/v3.2.1/esptool-3.2.1.zip';"
109111
replace_script+="fp.seek(0);fp.truncate();json.dump(data, fp, indent=2);fp.close()"
110112
python -c "$replace_script"
111113

libraries/SPI/examples/SPI_Multiple_Buses/SPI_Multiple_Buses.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
#define HSPI_SS 15
4040
#endif
4141

42-
#if CONFIG_IDF_TARGET_ESP32S2
42+
#if CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
4343
#define VSPI FSPI
4444
#endif
4545

0 commit comments

Comments
 (0)