-
Notifications
You must be signed in to change notification settings - Fork 943
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into chatter-keypad-support
- Loading branch information
Showing
288 changed files
with
18,070 additions
and
3,111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Build STM32 | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
board: | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
build-stm32: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build base | ||
id: base | ||
uses: ./.github/actions/setup-base | ||
|
||
- name: Build STM32 | ||
run: bin/build-stm32.sh ${{ inputs.board }} | ||
|
||
- name: Get release version string | ||
run: echo "version=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT | ||
id: version | ||
|
||
- name: Store binaries as an artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: firmware-${{ inputs.board }}-${{ steps.version.outputs.version }}.zip | ||
overwrite: true | ||
path: | | ||
release/*.hex | ||
release/*.bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
.github/workflows/main_matrix.yml | ||
src/mesh/compression/unishox2.c | ||
src/mesh/compression/unishox2.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[bandit] | ||
skips = B101 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
version: 0.1 | ||
cli: | ||
version: 1.22.1 | ||
version: 1.22.2 | ||
plugins: | ||
sources: | ||
- id: trunk | ||
|
@@ -31,6 +31,10 @@ lint: | |
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
ignore: | ||
- linters: [ALL] | ||
paths: | ||
- bin/** | ||
runtimes: | ||
enabled: | ||
- [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[stm32_base] | ||
extends = arduino_base | ||
platform = ststm32 | ||
platform_packages = platformio/framework-arduinoststm32@https://github.com/stm32duino/Arduino_Core_STM32.git#361a7fdb67e2a7104e99b4f42a802469eef8b129 | ||
|
||
build_type = release | ||
|
||
;board_build.flash_offset = 0x08000000 | ||
|
||
build_flags = | ||
${arduino_base.build_flags} | ||
-flto | ||
-Isrc/platform/stm32wl -g | ||
-DMESHTASTIC_MINIMIZE_BUILD | ||
-DDEBUG_MUTE | ||
; -DVECT_TAB_OFFSET=0x08000000 | ||
-DconfigUSE_CMSIS_RTOS_V2=1 | ||
; -DSPI_MODE_0=SPI_MODE0 | ||
-fmerge-all-constants | ||
-ffunction-sections | ||
-fdata-sections | ||
|
||
build_src_filter = | ||
${arduino_base.build_src_filter} -<platform/esp32/> -<nimble/> -<mesh/api/> -<mesh/wifi/> -<mesh/http/> -<modules/esp32> -<mesh/eth/> -<input> -<buzz> -<modules/Telemetry> -<platform/nrf52> -<platform/portduino> -<platform/rp2040> -<mesh/raspihttp> | ||
|
||
board_upload.offset_address = 0x08000000 | ||
upload_protocol = stlink | ||
|
||
lib_deps = | ||
${env.lib_deps} | ||
charlesbaynham/OSFS@^1.2.3 | ||
https://github.com/caveman99/Crypto.git#f61ae26a53f7a2d0ba5511625b8bf8eff3a35d5e | ||
|
||
lib_ignore = | ||
mathertel/OneButton | ||
Wire |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.