Skip to content

Commit

Permalink
Update - HC32 configs - remove HAS_GCODE_PREVIEW
Browse files Browse the repository at this point in the history
  • Loading branch information
classicrocker883 committed Aug 13, 2024
1 parent 0664f0e commit 563142e
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 33 deletions.
51 changes: 25 additions & 26 deletions .github/workflows/compile-configs-HC32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,25 @@ jobs:
temp: [true,false]
inshape: [true,false]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Cache pip
uses: actions/cache@v3.3.2
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@v3.3.2
uses: actions/cache@v4
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install PlatformIO
Expand All @@ -47,7 +47,7 @@ jobs:
run: |
if ($TP); then TPTMP=-MPC; else TPTMP=; fi;
if ($IS); then ISTMP=-IS; else ISTMP=; fi;
echo "filename=HC32_Default${ISTMP}${TPTMP}.bin" >> $GITHUB_OUTPUT
echo "filename=HC32_Default${ISTMP}${TPTMP}$(date +"-%m-%d").bin" >> $GITHUB_OUTPUT
> Marlin/Configuration.h
> Marlin/Configuration_adv.h
> Marlin/Version.h
Expand Down Expand Up @@ -90,25 +90,25 @@ jobs:
temp: [true,false]
inshape: [true,false]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Cache pip
uses: actions/cache@v3.3.2
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@v3.3.2
uses: actions/cache@v4
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install PlatformIO
Expand All @@ -121,7 +121,7 @@ jobs:
run: |
if ($TP); then TPTMP=-MPC; else TPTMP=; fi;
if ($IS); then ISTMP=-IS; else ISTMP=; fi;
echo "filename=HC32_MM-ProUI-EX${ISTMP}${TPTMP}.bin" >> $GITHUB_OUTPUT
echo "filename=HC32_MM-ProUI-EX${ISTMP}${TPTMP}$(date +"-%m-%d").bin" >> $GITHUB_OUTPUT
> Marlin/Configuration.h
> Marlin/Configuration_adv.h
> Marlin/Version.h
Expand Down Expand Up @@ -173,25 +173,25 @@ jobs:
pro: [true,false]
bmp: [true,false]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Cache pip
uses: actions/cache@v3.3.2
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@v3.3.2
uses: actions/cache@v4
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install PlatformIO
Expand All @@ -205,7 +205,7 @@ jobs:
if ($TP); then TPTMP=-MPC; else TPTMP=; fi;
if ($PRO); then PRTMP=; else PRTMP=-ProUI-EX; fi;
if ($BMP); then MPTMP=_BMP; else MPTMP=; fi;
echo "filename=HC32${MPTMP}_UBL${PRTMP}${TPTMP}.bin" >> $GITHUB_OUTPUT
echo "filename=HC32${MPTMP}_UBL${PRTMP}${TPTMP}$(date +"-%m-%d").bin" >> $GITHUB_OUTPUT
> Marlin/Configuration.h
> Marlin/Configuration_adv.h
> Marlin/Version.h
Expand Down Expand Up @@ -261,25 +261,25 @@ jobs:
inshape: [true]
bmp: [true,false]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Cache pip
uses: actions/cache@v3.3.2
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@v3.3.2
uses: actions/cache@v4
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install PlatformIO
Expand All @@ -292,7 +292,7 @@ jobs:
run: |
if ($IS); then ISTMP=-IS; fi;
if ($BMP); then MPTMP=_BMP; else MPTMP=; fi;
echo "filename=HC32${MPTMP}_UBL${ISTMP}.bin" >> $GITHUB_OUTPUT
echo "filename=HC32${MPTMP}_UBL${ISTMP}$(date +"-%m-%d").bin" >> $GITHUB_OUTPUT
> Marlin/Configuration.h
> Marlin/Configuration_adv.h
> Marlin/Version.h
Expand Down Expand Up @@ -340,25 +340,25 @@ jobs:
inshape: [true,false]
bmp: [true,false]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Cache pip
uses: actions/cache@v3.3.2
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@v3.3.2
uses: actions/cache@v4
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install PlatformIO
Expand All @@ -371,7 +371,7 @@ jobs:
run: |
if ($IS); then ISTMP=-IS; else ISTMP=; fi;
if ($BMP); then MPTMP=_BMP; else MPTMP=; fi;
echo "filename=HC32${MPTMP}_BLT-ProUI-EX${ISTMP}.bin" >> $GITHUB_OUTPUT
echo "filename=HC32${MPTMP}_BLT-ProUI-EX${ISTMP}$(date +"-%m-%d").bin" >> $GITHUB_OUTPUT
> Marlin/Configuration.h
> Marlin/Configuration_adv.h
> Marlin/Version.h
Expand Down Expand Up @@ -444,7 +444,6 @@ jobs:
- name: Install PlatformIO
run: |
python3 -m pip install --upgrade pip
pip install --upgrade pip
pip install --upgrade wheel
pip install --upgrade platformio
- name: Run PlatformIO
Expand Down
2 changes: 1 addition & 1 deletion Marlin/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3469,7 +3469,7 @@
// Professional firmware features:
#define PROUI_EX 1 // Extended UI features (15152 bytes of flash)
//#define CV_LASER_MODULE
#define HAS_GCODE_PREVIEW 1
//#define HAS_GCODE_PREVIEW 1
#define DISABLE_TUNING_GRAPH 0// Temp plot graph - PID/MPC Tuning (1624 bytes of flash)
#define HAS_ESDIAG 1 // View End-stop switch continuity (560 bytes of flash)
//#define HAS_CGCODE 1 // Extra Gcode options (3320 bytes of flash)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3469,7 +3469,7 @@
// Professional firmware features:
//#define PROUI_EX 1 // Extended UI features (15152 bytes of flash)
//#define CV_LASER_MODULE
#define HAS_GCODE_PREVIEW 1
//#define HAS_GCODE_PREVIEW 1
#define DISABLE_TUNING_GRAPH 0// Temp plot graph - PID/MPC Tuning (1624 bytes of flash)
#define HAS_ESDIAG 1 // View End-stop switch continuity (560 bytes of flash)
#define HAS_CGCODE 1 // Extra Gcode options (3320 bytes of flash)
Expand Down
2 changes: 1 addition & 1 deletion configurations/Voxelab Aquila HC32/C2/MM/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3469,7 +3469,7 @@
// Professional firmware features:
#define PROUI_EX 1 // Extended UI features (15152 bytes of flash)
//#define CV_LASER_MODULE
#define HAS_GCODE_PREVIEW 1
//#define HAS_GCODE_PREVIEW 1
#define DISABLE_TUNING_GRAPH 0// Temp plot graph - PID/MPC Tuning (1624 bytes of flash)
#define HAS_ESDIAG 1 // View End-stop switch continuity (560 bytes of flash)
#define HAS_CGCODE 1 // Extra Gcode options (3320 bytes of flash)
Expand Down
2 changes: 1 addition & 1 deletion configurations/Voxelab Aquila HC32/ConfigurationBLT.h
Original file line number Diff line number Diff line change
Expand Up @@ -3469,7 +3469,7 @@
// Professional firmware features:
#define PROUI_EX 1 // Extended UI features (15152 bytes of flash)
//#define CV_LASER_MODULE
#define HAS_GCODE_PREVIEW 1
//#define HAS_GCODE_PREVIEW 1
#define DISABLE_TUNING_GRAPH 0// Temp plot graph - PID/MPC Tuning (1624 bytes of flash)
#define HAS_ESDIAG 1 // View End-stop switch continuity (560 bytes of flash)
#define HAS_CGCODE 1 // Extra Gcode options (3320 bytes of flash)
Expand Down
2 changes: 1 addition & 1 deletion configurations/Voxelab Aquila HC32/ConfigurationDNP.h
Original file line number Diff line number Diff line change
Expand Up @@ -3469,7 +3469,7 @@
// Professional firmware features:
//#define PROUI_EX 1 // Extended UI features (15152 bytes of flash)
//#define CV_LASER_MODULE
#define HAS_GCODE_PREVIEW 1
//#define HAS_GCODE_PREVIEW 1
#define DISABLE_TUNING_GRAPH 0// Temp plot graph - PID/MPC Tuning (1624 bytes of flash)
#define HAS_ESDIAG 1 // View End-stop switch continuity (560 bytes of flash)
#define HAS_CGCODE 1 // Extra Gcode options (3320 bytes of flash)
Expand Down
2 changes: 1 addition & 1 deletion configurations/Voxelab Aquila HC32/ConfigurationMM.h
Original file line number Diff line number Diff line change
Expand Up @@ -3469,7 +3469,7 @@
// Professional firmware features:
#define PROUI_EX 1 // Extended UI features (15152 bytes of flash)
//#define CV_LASER_MODULE
#define HAS_GCODE_PREVIEW 1
//#define HAS_GCODE_PREVIEW 1
#define DISABLE_TUNING_GRAPH 0// Temp plot graph - PID/MPC Tuning (1624 bytes of flash)
#define HAS_ESDIAG 1 // View End-stop switch continuity (560 bytes of flash)
#define HAS_CGCODE 1 // Extra Gcode options (3320 bytes of flash)
Expand Down
2 changes: 1 addition & 1 deletion configurations/Voxelab Aquila HC32/ConfigurationUBL.h
Original file line number Diff line number Diff line change
Expand Up @@ -3469,7 +3469,7 @@
// Professional firmware features:
#define PROUI_EX 1 // Extended UI features (15152 bytes of flash)
//#define CV_LASER_MODULE
#define HAS_GCODE_PREVIEW 1
//#define HAS_GCODE_PREVIEW 1
#define DISABLE_TUNING_GRAPH 0// Temp plot graph - PID/MPC Tuning (1624 bytes of flash)
#define HAS_ESDIAG 1 // View End-stop switch continuity (560 bytes of flash)
//#define HAS_CGCODE 1 // Extra Gcode options (3320 bytes of flash)
Expand Down

0 comments on commit 563142e

Please sign in to comment.