forked from meshtastic/firmware
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into brc-2023
- Loading branch information
Showing
75 changed files
with
1,505 additions
and
176 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
name: CI | ||
#concurrency: | ||
# group: ${{ github.ref }} | ||
# cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | ||
on: | ||
# # Triggers the workflow on push but only for the master branch | ||
push: | ||
|
@@ -46,7 +49,7 @@ jobs: | |
|
||
- name: Trunk Check | ||
if: ${{ github.event_name != 'workflow_dispatch' }} | ||
uses: trunk-io/trunk-action@v1 | ||
uses: trunk-io/trunk-action@782e83f803ca6e369f035d64c6ba2768174ba61b | ||
|
||
- name: Check ${{ matrix.board }} | ||
run: bin/check-all.sh ${{ matrix.board }} | ||
|
@@ -108,6 +111,7 @@ jobs: | |
- board: t-echo | ||
- board: pca10059_diy_eink | ||
- board: feather_diy | ||
- board: nano-g2-ultra | ||
uses: ./.github/workflows/build_nrf52.yml | ||
with: | ||
board: ${{ matrix.board }} | ||
|
@@ -255,6 +259,7 @@ jobs: | |
retention-days: 30 | ||
|
||
- name: Create request artifacts | ||
continue-on-error: true # FIXME: Why are we getting 502, but things still work? | ||
if: ${{ github.event_name == 'pull_request_target' || github.event_name == 'pull_request' }} | ||
uses: gavv/[email protected] | ||
with: | ||
|
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
"platformio.platformio-ide", | ||
"trunk.io" | ||
], | ||
} | ||
} |
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,4 +1,5 @@ | ||
{ | ||
"editor.formatOnSave": true, | ||
"editor.defaultFormatter": "trunk.io" | ||
"editor.defaultFormatter": "trunk.io", | ||
"trunk.enableWindows": true | ||
} |
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,51 @@ | ||
{ | ||
"build": { | ||
"arduino": { | ||
"ldscript": "nrf52840_s140_v6.ld" | ||
}, | ||
"core": "nRF5", | ||
"cpu": "cortex-m4", | ||
"extra_flags": "-DARDUINO_NRF52840_FEATHER -DNRF52840_XXAA", | ||
"f_cpu": "64000000L", | ||
"hwids": [ | ||
["0x239A", "0x8029"], | ||
["0x239A", "0x0029"], | ||
["0x239A", "0x002A"], | ||
["0x239A", "0x802A"] | ||
], | ||
"usb_product": "BQ nRF52840", | ||
"mcu": "nrf52840", | ||
"variant": "nano-g2-ultra", | ||
"bsp": { | ||
"name": "adafruit" | ||
}, | ||
"softdevice": { | ||
"sd_flags": "-DS140", | ||
"sd_name": "s140", | ||
"sd_version": "6.1.1", | ||
"sd_fwid": "0x00B6" | ||
}, | ||
"bootloader": { | ||
"settings_addr": "0xFF000" | ||
} | ||
}, | ||
"connectivity": ["bluetooth"], | ||
"debug": { | ||
"jlink_device": "nRF52840_xxAA", | ||
"svd_path": "nrf52840.svd" | ||
}, | ||
"frameworks": ["arduino"], | ||
"name": "BQ nRF52840", | ||
"upload": { | ||
"maximum_ram_size": 248832, | ||
"maximum_size": 815104, | ||
"speed": 115200, | ||
"protocol": "nrfutil", | ||
"protocols": ["jlink", "nrfjprog", "nrfutil", "stlink"], | ||
"use_1200bps_touch": true, | ||
"require_upload_port": true, | ||
"wait_for_upload_port": true | ||
}, | ||
"url": "https://wiki.uniteng.com/en/meshtastic/nano-g2-ultra", | ||
"vendor": "BQ Consulting" | ||
} |
Submodule protobufs
updated
4 files
+6 −1 | meshtastic/admin.proto | |
+3 −2 | meshtastic/config.proto | |
+8 −3 | meshtastic/mesh.proto | |
+0 −5 | meshtastic/portnums.proto |
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
Oops, something went wrong.