Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/buildRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
rm -f release/*
- name: Build
run: |
for env in m5dial cyddial; do
for env in m5dial cyddial pibot; do
pio run -e $env
pio run -e $env -t build_merged
done
Expand Down
5 changes: 4 additions & 1 deletion manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def addImage(imageName, offset, srcFilePath, dstFileName):
sys.exit(1)
manifest['images'][imageName] = image

for envName in ['m5dial', 'cyddial']:
for envName in ['m5dial', 'cyddial', 'pibot']:
buildDir = os.path.join('.pio', 'build', envName)
addImage(envName, '0x0000', os.path.join(buildDir, 'merged-flash.bin'), envName + ".bin")

Expand Down Expand Up @@ -107,6 +107,9 @@ def makeManifest():
addDialType("FluidDial for CYD", "FluidDial for CYD Dial", "FluidDial type")
addInstallable(fresh_install, False, ["cyddial"])

addDialType("FluidDial for PiBot Pendant V4", "FluidDial for PiBot Pendant V4", "FluidDial type")
addInstallable(fresh_install, False, ["pibot"])

mcu = "esp32s3"
addMCU(mcu, "ESP32-S3-WROOM-1", "Firmware variant")

Expand Down