Skip to content

Commit

Permalink
Merge pull request #59 from mikevanis/master
Browse files Browse the repository at this point in the history
Change compilation options to work with 3.8M boards
  • Loading branch information
andysheen authored Oct 19, 2020
2 parents b662127 + abbc033 commit 5db106b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ jobs:
run: |
mkdir build
echo "Compiling ${{github.repository}}..."
arduino-cli compile -v -b esp32:esp32:esp32 --output-dir build ESP32-SOCKETIO
arduino-cli compile -v -b esp32:esp32:esp32 --build-properties build.partitions=minimal,upload.maximum_size=1966080 --output-dir build ESP32-SOCKETIO
- name: Create spiffs binary
run: |
/home/runner/.arduino15/packages/esp32/tools/mkspiffs/0.2.3/mkspiffs -c ESP32-SOCKETIO/data -b 4096 -p 256 -s 0x170000 build/spiffs.bin
/home/runner/.arduino15/packages/esp32/tools/mkspiffs/0.2.3/mkspiffs -c ESP32-SOCKETIO/data -b 4096 -p 256 -s 0xB0000 build/spiffs.bin
- name: Checkout esp_binary_merger
uses: actions/checkout@v2
Expand All @@ -80,8 +80,8 @@ jobs:
run: |
python esp32_binary_merger/merge_bin_esp.py \
--output_name app-combined.bin \
--bin_path ESP32-SOCKETIO/helpers/bootloader_qio_80m.bin build/ESP32-SOCKETIO.ino.partitions.bin build/ESP32-SOCKETIO.ino.bin build/spiffs.bin \
--bin_address 0x1000 0x8000 0x10000 0x290000
--bin_path /home/runner/.arduino15/packages/esp32/hardware/esp32/1.0.4/tools/sdk/bin/bootloader_dio_80m.bin build/ESP32-SOCKETIO.ino.partitions.bin build/ESP32-SOCKETIO.ino.bin build/spiffs.bin \
--bin_address 0x1000 0x8000 0x10000 0x150000
mv output/app-combined.bin build/app-combined.bin
mv build/ESP32-SOCKETIO.ino.bin build/app.bin
Expand Down
Binary file removed helpers/bootloader_qio_80m.bin
Binary file not shown.

0 comments on commit 5db106b

Please sign in to comment.