refactor: remove unused flash size parameters in release workflows

This commit is contained in:
Manuel Weiser 2025-02-21 10:46:00 +01:00
parent 21ba35cd19
commit c43ca20d8d
2 changed files with 1 additions and 5 deletions

View File

@ -66,10 +66,8 @@ jobs:
# Create full binary with correct partition offsets # Create full binary with correct partition offsets
echo "Creating full binary..." echo "Creating full binary..."
esptool.py --chip esp32 merge_bin \ esptool.py --chip esp32 merge_bin \
--fill-flash-size 4MB \
--flash_mode dio \ --flash_mode dio \
--flash_freq 40m \ --flash_freq 40m \
--flash_size 4MB \
-o filaman_full.bin \ -o filaman_full.bin \
0x1000 bootloader.bin \ 0x1000 bootloader.bin \
0x8000 partitions.bin \ 0x8000 partitions.bin \

View File

@ -52,13 +52,11 @@ jobs:
# Create release files # Create release files
cp spiffs.bin filaman_spiffs.bin cp spiffs.bin filaman_spiffs.bin
# Create full binary with correct partition offsets # Create full binary without filling unused space
echo "Creating full binary..." echo "Creating full binary..."
esptool.py --chip esp32 merge_bin \ esptool.py --chip esp32 merge_bin \
--fill-flash-size 4MB \
--flash_mode dio \ --flash_mode dio \
--flash_freq 40m \ --flash_freq 40m \
--flash_size 4MB \
-o filaman_full.bin \ -o filaman_full.bin \
0x1000 bootloader.bin \ 0x1000 bootloader.bin \
0x8000 partitions.bin \ 0x8000 partitions.bin \