Skip to content

Commit

Permalink
CO2 Gadget Beta v0.14.001
Browse files Browse the repository at this point in the history
Fix: Web installer partition table SPIFFS offset for S3
  • Loading branch information
melkati committed Jun 4, 2024
1 parent 1f1b46b commit c8d6774
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 27 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/release3.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release V2.93
name: Release V2.94

# # # # # # # # # # #
# To create new release, just push a new tag with the format v* (v1.0, v2.0, v2.1, v2.2, etc)
Expand All @@ -23,19 +23,19 @@ jobs:
strategy:
matrix:
environment:
# - esp32dev
# - esp32dev_OLED
# - TTGO_TDISPLAY
# - TTGO_TDISPLAY_SANDWICH
- esp32dev
- esp32dev_OLED
- TTGO_TDISPLAY
- TTGO_TDISPLAY_SANDWICH
- TDISPLAY_S3
# - esp32dev_ST7789_240x320
# - ttgo-t5-EINKBOARDGDEM0213B74
# - ttgo-t5-EINKBOARDDEPG0213BN
# - ttgo-t5-EINKBOARDGDEW0213M21
# - ttgo-t7-EINKBOARDGDEM029T94
# - ttgo-t7-WEACT_GDEH0154D67
# - ttgo-t7-WEACT_DEPG0213BN
# - ttgo-t7-WEACT_GxEPD2_290_BS
- esp32dev_ST7789_240x320
- ttgo-t5-EINKBOARDGDEM0213B74
- ttgo-t5-EINKBOARDDEPG0213BN
- ttgo-t5-EINKBOARDGDEW0213M21
- ttgo-t7-EINKBOARDGDEM029T94
- ttgo-t7-WEACT_GDEH0154D67
- ttgo-t7-WEACT_DEPG0213BN
- ttgo-t7-WEACT_GxEPD2_290_BS

env:
CHIP_FAMILY: ${{ matrix.environment == 'TDISPLAY_S3' && 'ESP32-S3' || 'ESP32' }}
Expand Down Expand Up @@ -93,12 +93,12 @@ jobs:
run: |
# Define offset values based on env.CHIP_FAMILY
# SPIFFS at 0x370000 (3604480) for ESP32 and 0xc90000 (1310720) for ESP32-S3
# SPIFFS at 0x370000 (3604480) for ESP32 and 0xc90000 (13172736) for ESP32-S3
if [[ "${{ env.CHIP_FAMILY }}" == "ESP32-S3" ]]; then
bootloader_offset=0
partitions_offset=32768
firmware_offset=65536
spiffs_offset=1310720
spiffs_offset=13172736
else
# Default values for ESP32 or other environments
bootloader_offset=4096
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/release3_beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@ jobs:
strategy:
matrix:
environment:
# - esp32dev
# - esp32dev_OLED
# - TTGO_TDISPLAY
# - TTGO_TDISPLAY_SANDWICH
- esp32dev
- esp32dev_OLED
- TTGO_TDISPLAY
- TTGO_TDISPLAY_SANDWICH
- TDISPLAY_S3
# - esp32dev_ST7789_240x320
# - ttgo-t5-EINKBOARDGDEM0213B74
# - ttgo-t5-EINKBOARDDEPG0213BN
# - ttgo-t5-EINKBOARDGDEW0213M21
# - ttgo-t7-EINKBOARDGDEM029T94
# - ttgo-t7-WEACT_GDEH0154D67
# - ttgo-t7-WEACT_DEPG0213BN
# - ttgo-t7-WEACT_GxEPD2_290_BS
- esp32dev_ST7789_240x320
- ttgo-t5-EINKBOARDGDEM0213B74
- ttgo-t5-EINKBOARDDEPG0213BN
- ttgo-t5-EINKBOARDGDEW0213M21
- ttgo-t7-EINKBOARDGDEM029T94
- ttgo-t7-WEACT_GDEH0154D67
- ttgo-t7-WEACT_DEPG0213BN
- ttgo-t7-WEACT_GxEPD2_290_BS

env:
CHIP_FAMILY: ${{ matrix.environment == 'TDISPLAY_S3' && 'ESP32-S3' || 'ESP32' }}
Expand Down

0 comments on commit c8d6774

Please sign in to comment.