-
Notifications
You must be signed in to change notification settings - Fork 1k
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 change-pubsubclient
- Loading branch information
Showing
14 changed files
with
81 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
config.yaml |
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,5 @@ | ||
# Module: RF95 # Adafruit RFM9x | ||
# Reset: 25 | ||
# CS: 7 | ||
# IRQ: 22 | ||
# Busy: 23 |
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,6 @@ | ||
.debhelper | ||
debhelper-build-stamp | ||
meshtasticd | ||
files | ||
meshtasticd.substvars | ||
meshtasticd.postrm.debhelper |
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,5 @@ | ||
meshtasticd (2.5.19) unstable; urgency=medium | ||
|
||
* Initial packaging | ||
|
||
-- Austin Lane <[email protected]> Thu, 02 Jan 2025 12:00:00 +0000 |
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,25 @@ | ||
Source: meshtasticd | ||
Section: misc | ||
Priority: optional | ||
Maintainer: Austin Lane <[email protected]> | ||
Build-Depends: debhelper-compat (= 13), | ||
python3-pip, | ||
python3-venv, | ||
git, | ||
g++, | ||
pkg-config, | ||
libyaml-cpp-dev, | ||
libgpiod-dev, | ||
libbluetooth-dev, | ||
libusb-1.0-0-dev, | ||
libi2c-dev | ||
Standards-Version: 4.6.2 | ||
Homepage: https://github.com/meshtastic/firmware | ||
Rules-Requires-Root: no | ||
|
||
Package: meshtasticd | ||
Architecture: any | ||
Depends: ${misc:Depends}, ${shlibs:Depends} | ||
Description: Meshtastic daemon for communicating with Meshtastic devices | ||
Meshtastic is an off-grid text communication platform that uses inexpensive | ||
LoRa radios. |
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,3 @@ | ||
etc/meshtasticd | ||
etc/meshtasticd/config.d | ||
etc/meshtasticd/available.d |
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,6 @@ | ||
.pio/build/native/meshtasticd usr/sbin | ||
|
||
bin/config.yaml etc/meshtasticd | ||
bin/config.d/* etc/meshtasticd/available.d | ||
|
||
bin/meshtasticd.service lib/systemd/system |
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,17 @@ | ||
#!/usr/bin/make -f | ||
|
||
# Use the "dh" sequencer | ||
%: | ||
dh $@ | ||
|
||
override_dh_auto_build: | ||
# Terrible hack to use modern platformio to build the native version | ||
# python3 -m venv venv | ||
# . venv/bin/activate | ||
pip install platformio --break-system-packages | ||
platformio run -e native | ||
# deactivate | ||
# rm -rf venv | ||
# Move the binary and default config to the correct name | ||
mv .pio/build/native/program .pio/build/native/meshtasticd | ||
cp bin/config-dist.yaml bin/config.yaml |
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 @@ | ||
3.0 (native) |
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,5 @@ | ||
#!/usr/bin/bash | ||
export DEBEMAIL="github-actions[bot]@users.noreply.github.com" | ||
dch --newversion "$(python3 bin/buildinfo.py short)-1" \ | ||
--distribution unstable \ | ||
"GitHub Actions Automatic version bump" |
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