File tree Expand file tree Collapse file tree 8 files changed +9
-9
lines changed
heltec_vision_master_t190 Expand file tree Collapse file tree 8 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ jobs:
309309 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
310310
311311 - name : Create release
312- uses : softprops/action-gh-release@v2
312+ uses : softprops/action-gh-release@v3
313313 id : create_release
314314 with :
315315 draft : true
Original file line number Diff line number Diff line change 5252 node-version : 24
5353
5454 - name : Setup pnpm
55- uses : pnpm/action-setup@v5
55+ uses : pnpm/action-setup@v6
5656 with :
5757 version : latest
5858
Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ void EInkParallelDisplay::display(void)
202202
203203 // Get pointers to internal buffers
204204 uint8_t *cur = epaper->currentBuffer ();
205- uint8_t *prev = epaper->previousBuffer (); // may be NULL on first init
205+ const uint8_t *prev = epaper->previousBuffer (); // may be NULL on first init
206206
207207 // Track changed row range while converting
208208 int newTop = h; // min changed row (initialized to out-of-range)
Original file line number Diff line number Diff line change @@ -20,5 +20,5 @@ build_flags =
2020lib_deps =
2121 ${esp32s3_base.lib_deps}
2222 # renovate: datasource=git-refs depName=meshtastic-st7789 packageName=https://github.com/meshtastic/st7789 gitBranch=main
23- https://github.com/meshtastic/st7789/archive/4d957e758eab3ac354e8f2a276c945f5fcbaaa03 .zip
23+ https://github.com/meshtastic/st7789/archive/a787beea5c6c8f864ba6787eb432bbefc575e6ad .zip
2424upload_speed = 921600
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ build_src_filter =
1616lib_deps =
1717 ${esp32s3_base.lib_deps}
1818 # renovate: datasource=git-refs depName=meshtastic-st7789 packageName=https://github.com/meshtastic/st7789 gitBranch=main
19- https://github.com/meshtastic/st7789/archive/4d957e758eab3ac354e8f2a276c945f5fcbaaa03 .zip
19+ https://github.com/meshtastic/st7789/archive/a787beea5c6c8f864ba6787eb432bbefc575e6ad .zip
2020 # renovate: datasource=github-tags depName=pschatzmann_arduino-audio-driver packageName=pschatzmann/arduino-audio-driver
2121 https://github.com/pschatzmann/arduino-audio-driver/archive/v0.2.1.zip
2222 # renovate: datasource=git-refs depName=ESP8266Audio packageName=https://github.com/meshtastic/ESP8266Audio gitBranch=meshtastic-2.0.0-dacfix
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ void setupNicheGraphics()
9898 buttons->setTwoWayRockerPressHandlers (
9999 [inkhud]() {
100100 bool systemHandlingInput = false ;
101- for (InkHUD::SystemApplet *sa : inkhud->systemApplets ) {
101+ for (const InkHUD::SystemApplet *sa : inkhud->systemApplets ) {
102102 if (sa->handleInput ) {
103103 systemHandlingInput = true ;
104104 break ;
@@ -112,7 +112,7 @@ void setupNicheGraphics()
112112 },
113113 [inkhud]() {
114114 bool systemHandlingInput = false ;
115- for (InkHUD::SystemApplet *sa : inkhud->systemApplets ) {
115+ for (const InkHUD::SystemApplet *sa : inkhud->systemApplets ) {
116116 if (sa->handleInput ) {
117117 systemHandlingInput = true ;
118118 break ;
Original file line number Diff line number Diff line change @@ -23,4 +23,4 @@ build_src_filter = ${nrf52_base.build_src_filter} +<../variants/nrf52840/heltec_
2323lib_deps =
2424 ${nrf52840_base.lib_deps}
2525 # renovate: datasource=git-refs depName=meshtastic-st7789 packageName=https://github.com/meshtastic/st7789 gitBranch=main
26- https://github.com/meshtastic/st7789/archive/4d957e758eab3ac354e8f2a276c945f5fcbaaa03 .zip
26+ https://github.com/meshtastic/st7789/archive/a787beea5c6c8f864ba6787eb432bbefc575e6ad .zip
Original file line number Diff line number Diff line change @@ -132,4 +132,4 @@ build_flags = ${heltec_mesh_solar_base.build_flags}
132132lib_deps =
133133 ${heltec_mesh_solar_base.lib_deps}
134134 # renovate: datasource=git-refs depName=meshtastic-st7789 packageName=https://github.com/meshtastic/st7789 gitBranch=main
135- https://github.com/meshtastic/st7789/archive/4d957e758eab3ac354e8f2a276c945f5fcbaaa03 .zip
135+ https://github.com/meshtastic/st7789/archive/a787beea5c6c8f864ba6787eb432bbefc575e6ad .zip
You can’t perform that action at this time.
0 commit comments