Skip to content

Commit

Permalink
Merge pull request #2 from meshtastic/master
Browse files Browse the repository at this point in the history
Merge master
  • Loading branch information
linagee authored Jan 1, 2022
2 parents 0a4659b + 4753484 commit 69e1985
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
24 changes: 24 additions & 0 deletions .github/workflows/update_protobufs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "Update protobufs"
on: workflow_dispatch

jobs:
update-protobufs:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: true

- name: Update Submodule
run: |
git pull --recurse-submodules
git submodule update --remote --recursive
- name: Commit update
run: |
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
git add proto
git commit -m "Update protobuf submodule" && git push || echo "No changes to commit"
2 changes: 1 addition & 1 deletion proto
Submodule proto updated from 1d3b48 to 4a6408
1 change: 1 addition & 0 deletions src/configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

#define BUTTON_PIN 39 // The middle button GPIO on the T-Beam
#define EXT_NOTIFY_OUT 12 // Overridden default pin to use for Ext Notify Plugin (#975).
#define LED_PIN 2 // add status LED (compatible with core-pcb and DIY targets)

#define LORA_DIO0 26 // a No connect on the SX1262/SX1268 module
#define LORA_RESET 23 // RST for SX1276, and for SX1262/SX1268
Expand Down

0 comments on commit 69e1985

Please sign in to comment.