mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-30 06:31:01 +00:00
Compare commits
58 Commits
tcxo-indic
...
apollo
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b97ca2c834 | ||
|
|
b78978156e | ||
|
|
6860717c68 | ||
|
|
7d9b2ef3c4 | ||
|
|
7a3f30f99e | ||
|
|
02e258d5e9 | ||
|
|
19bcb60120 | ||
|
|
f0c97b8806 | ||
|
|
047b8a587d | ||
|
|
c1a493fb35 | ||
|
|
0e93470e34 | ||
|
|
074ccbaa0c | ||
|
|
3765b9f3af | ||
|
|
652441fcc0 | ||
|
|
688385fd75 | ||
|
|
f2116a06a7 | ||
|
|
7cbf66949b | ||
|
|
ed9bdf0e05 | ||
|
|
011cff2fe1 | ||
|
|
f50f61a52d | ||
|
|
72664b04f1 | ||
|
|
9be3b7bdc5 | ||
|
|
93d7f24d74 | ||
|
|
a7c0109349 | ||
|
|
a9fc31c026 | ||
|
|
4996e2aace | ||
|
|
b2a313780f | ||
|
|
55a75d2f58 | ||
|
|
dcae45d287 | ||
|
|
7d5716d3af | ||
|
|
81a783291d | ||
|
|
47b522fae4 | ||
|
|
c29b49f320 | ||
|
|
71645c029f | ||
|
|
acbbc95ebf | ||
|
|
a7bf7f47b5 | ||
|
|
2b074e60d9 | ||
|
|
c31476d3e8 | ||
|
|
b6b52d89df | ||
|
|
534845450b | ||
|
|
7e2d729434 | ||
|
|
de21b31ab0 | ||
|
|
db9cb3325f | ||
|
|
b8965d27bb | ||
|
|
72b1fa3889 | ||
|
|
ed432749e2 | ||
|
|
1369630292 | ||
|
|
b467ee09b8 | ||
|
|
8e088df363 | ||
|
|
9a79d34bce | ||
|
|
784381bae8 | ||
|
|
f826a85b0a | ||
|
|
a54ad6ba75 | ||
|
|
4b053ddd73 | ||
|
|
681377cc97 | ||
|
|
1eff8fdba8 | ||
|
|
516fc5ceed | ||
|
|
a7f9e5ddb4 |
@@ -1,52 +0,0 @@
|
|||||||
# This container is used to build Meshtastic with the libraries required by the fuzzer.
|
|
||||||
# ClusterFuzzLite starts the container, runs the build.sh script, and then exits.
|
|
||||||
|
|
||||||
# As this is not a long running service, health-checks are not required. ClusterFuzzLite
|
|
||||||
# also only works if the user remains unchanged from the base image (it expects to run
|
|
||||||
# as root).
|
|
||||||
# trunk-ignore-all(trivy/DS026): No healthcheck is needed for this builder container
|
|
||||||
# trunk-ignore-all(checkov/CKV_DOCKER_2): No healthcheck is needed for this builder container
|
|
||||||
# trunk-ignore-all(checkov/CKV_DOCKER_3): We must run as root for this container
|
|
||||||
# trunk-ignore-all(trivy/DS002): We must run as root for this container
|
|
||||||
# trunk-ignore-all(checkov/CKV_DOCKER_8): We must run as root for this container
|
|
||||||
# trunk-ignore-all(hadolint/DL3002): We must run as root for this container
|
|
||||||
|
|
||||||
FROM gcr.io/oss-fuzz-base/base-builder:v1
|
|
||||||
|
|
||||||
ENV PIP_ROOT_USER_ACTION=ignore
|
|
||||||
|
|
||||||
# trunk-ignore(hadolint/DL3008): apt packages are not pinned.
|
|
||||||
# trunk-ignore(terrascan/AC_DOCKER_0002): apt packages are not pinned.
|
|
||||||
RUN apt-get update && apt-get install --no-install-recommends -y \
|
|
||||||
cmake git zip libgpiod-dev libbluetooth-dev libi2c-dev \
|
|
||||||
libunistring-dev libmicrohttpd-dev libgnutls28-dev libgcrypt20-dev \
|
|
||||||
libusb-1.0-0-dev libssl-dev pkg-config && \
|
|
||||||
apt-get clean && rm -rf /var/lib/apt/lists/* && \
|
|
||||||
pip install --no-cache-dir -U \
|
|
||||||
platformio==6.1.16 \
|
|
||||||
grpcio-tools==1.68.1 \
|
|
||||||
meshtastic==2.5.9
|
|
||||||
|
|
||||||
# Ugly hack to avoid clang detecting a conflict between the math "log" function and the "log" function in framework-portduino/cores/portduino/logging.h
|
|
||||||
RUN sed -i -e 's/__MATHCALL_VEC (log,, (_Mdouble_ __x));//' /usr/include/x86_64-linux-gnu/bits/mathcalls.h
|
|
||||||
|
|
||||||
# A few dependencies are too old on the base-builder image. More recent versions are built from source.
|
|
||||||
WORKDIR $SRC
|
|
||||||
RUN git config --global advice.detachedHead false && \
|
|
||||||
git clone --depth 1 --branch 0.8.0 https://github.com/jbeder/yaml-cpp.git && \
|
|
||||||
git clone --depth 1 --branch v2.3.3 https://github.com/babelouest/orcania.git && \
|
|
||||||
git clone --depth 1 --branch v1.4.20 https://github.com/babelouest/yder.git && \
|
|
||||||
git clone --depth 1 --branch v2.7.15 https://github.com/babelouest/ulfius.git
|
|
||||||
|
|
||||||
COPY ./.clusterfuzzlite/build.sh $SRC/
|
|
||||||
|
|
||||||
WORKDIR $SRC/firmware
|
|
||||||
COPY . $SRC/firmware/
|
|
||||||
|
|
||||||
# https://docs.platformio.org/en/latest/envvars.html
|
|
||||||
ENV PLATFORMIO_CORE_DIR=$SRC/pio/core \
|
|
||||||
PLATFORMIO_LIBDEPS_DIR=$SRC/pio/libdeps \
|
|
||||||
PLATFORMIO_PACKAGES_DIR=$SRC/pio/packages \
|
|
||||||
PLATFORMIO_SETTING_ENABLE_CACHE=No \
|
|
||||||
PIO_ENV=buildroot
|
|
||||||
RUN platformio pkg install --environment $PIO_ENV
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
# ClusterFuzzLite for Meshtastic
|
|
||||||
|
|
||||||
This directory contains the fuzzer implementation for Meshtastic using the ClusterFuzzLite framework.
|
|
||||||
See the [ClusterFuzzLite documentation](https://google.github.io/clusterfuzzlite/) for more details.
|
|
||||||
|
|
||||||
## Running locally
|
|
||||||
|
|
||||||
ClusterFuzzLite uses the OSS-Fuzz toolchain. To build the fuzzer manually, first grab a copy of OSS-Fuzz.
|
|
||||||
|
|
||||||
```shell
|
|
||||||
git clone https://github.com/google/oss-fuzz.git
|
|
||||||
cd oss-fuzz
|
|
||||||
```
|
|
||||||
|
|
||||||
To build the fuzzer, run:
|
|
||||||
|
|
||||||
```shell
|
|
||||||
python3 infra/helper.py build_image --external $PATH_TO_MESHTASTIC_FIRMWARE_DIRECTORY
|
|
||||||
python3 infra/helper.py build_fuzzers --external $PATH_TO_MESHTASTIC_FIRMWARE_DIRECTORY --sanitizer address
|
|
||||||
```
|
|
||||||
|
|
||||||
To run the fuzzer, run:
|
|
||||||
|
|
||||||
```shell
|
|
||||||
python3 infra/helper.py run_fuzzer --external --corpus-dir=<path-to-temp-corpus-dir> $PATH_TO_MESHTASTIC_FIRMWARE_DIRECTORY router_fuzzer
|
|
||||||
```
|
|
||||||
|
|
||||||
More background on these commands can be found in the
|
|
||||||
[ClusterFuzzLite documentation](https://google.github.io/clusterfuzzlite/build-integration/#testing-locally).
|
|
||||||
|
|
||||||
## router_fuzzer.cpp
|
|
||||||
|
|
||||||
This fuzzer submits MeshPacket protos to the `Router::enqueueReceivedMessage` method. It takes the binary
|
|
||||||
data from the fuzzer and decodes that data to a MeshPacket using nanopb. A few fields in
|
|
||||||
the MeshPacket are modified by the fuzzer.
|
|
||||||
|
|
||||||
- If the `to` field is 0, it will be replaced with the NodeID of the running node.
|
|
||||||
- If the `from` field is 0, it will be replaced with the NodeID of the running node.
|
|
||||||
- If the `id` field is 0, it will be replaced with an incrementing counter value.
|
|
||||||
- If the `pki_encrypted` field is true, the `public_key` field will be populated with the first admin key.
|
|
||||||
|
|
||||||
The `router_fuzzer_seed_corpus.py` file contains a list of MeshPackets. It is run from inside build.sh and
|
|
||||||
writes the binary MeshPacket protos to files. These files are use used by the fuzzer as its initial seed data,
|
|
||||||
helping the fuzzer to start off with a few known inputs.
|
|
||||||
|
|
||||||
### Interpreting a fuzzer crash
|
|
||||||
|
|
||||||
If the fuzzer crashes, it'll write the input bytes used for the test case to a file and notify about the
|
|
||||||
location of that file. The contents of the file are a binary serialized MeshPacket protobuf. The following
|
|
||||||
snippet of Python code can be used to parse the file into a human readable form.
|
|
||||||
|
|
||||||
```python
|
|
||||||
from meshtastic.protobuf import mesh_pb2
|
|
||||||
|
|
||||||
mesh_pb2.MeshPacket.FromString(open("crash-XXXX-file", "rb").read())
|
|
||||||
```
|
|
||||||
|
|
||||||
Consider adding any such crash results to the `router_fuzzer_seed_corpus.py` file to ensure there a isn't
|
|
||||||
a future regression for that crash test case.
|
|
||||||
@@ -1,71 +0,0 @@
|
|||||||
#!/bin/bash -eu
|
|
||||||
|
|
||||||
# Build Meshtastic and a few needed dependencies using clang++
|
|
||||||
# and the OSS-Fuzz required build flags.
|
|
||||||
|
|
||||||
env
|
|
||||||
|
|
||||||
cd "$SRC"
|
|
||||||
NPROC=$(nproc || echo 1)
|
|
||||||
|
|
||||||
LDFLAGS=-lpthread cmake -S "$SRC/yaml-cpp" -B "$WORK/yaml-cpp/$SANITIZER" \
|
|
||||||
-DBUILD_SHARED_LIBS=OFF
|
|
||||||
cmake --build "$WORK/yaml-cpp/$SANITIZER" -j "$NPROC"
|
|
||||||
cmake --install "$WORK/yaml-cpp/$SANITIZER" --prefix /usr
|
|
||||||
|
|
||||||
cmake -S "$SRC/orcania" -B "$WORK/orcania/$SANITIZER" \
|
|
||||||
-DBUILD_STATIC=ON
|
|
||||||
cmake --build "$WORK/orcania/$SANITIZER" -j "$NPROC"
|
|
||||||
cmake --install "$WORK/orcania/$SANITIZER" --prefix /usr
|
|
||||||
|
|
||||||
cmake -S "$SRC/yder" -B "$WORK/yder/$SANITIZER" \
|
|
||||||
-DBUILD_STATIC=ON -DWITH_JOURNALD=OFF
|
|
||||||
cmake --build "$WORK/yder/$SANITIZER" -j "$NPROC"
|
|
||||||
cmake --install "$WORK/yder/$SANITIZER" --prefix /usr
|
|
||||||
|
|
||||||
cmake -S "$SRC/ulfius" -B "$WORK/ulfius/$SANITIZER" \
|
|
||||||
-DBUILD_STATIC=ON -DWITH_JANSSON=OFF -DWITH_CURL=OFF -DWITH_WEBSOCKET=OFF
|
|
||||||
cmake --build "$WORK/ulfius/$SANITIZER" -j "$NPROC"
|
|
||||||
cmake --install "$WORK/ulfius/$SANITIZER" --prefix /usr
|
|
||||||
|
|
||||||
cd "$SRC/firmware"
|
|
||||||
|
|
||||||
PLATFORMIO_EXTRA_SCRIPTS=$(echo -e "pre:.clusterfuzzlite/platformio-clusterfuzzlite-pre.py\npost:.clusterfuzzlite/platformio-clusterfuzzlite-post.py")
|
|
||||||
STATIC_LIBS=$(pkg-config --libs --static libulfius openssl libgpiod yaml-cpp bluez --silence-errors)
|
|
||||||
export PLATFORMIO_EXTRA_SCRIPTS
|
|
||||||
export STATIC_LIBS
|
|
||||||
export PLATFORMIO_WORKSPACE_DIR="$WORK/pio/$SANITIZER"
|
|
||||||
export TARGET_CC=$CC
|
|
||||||
export TARGET_CXX=$CXX
|
|
||||||
export TARGET_LD=$CXX
|
|
||||||
export TARGET_AR=llvm-ar
|
|
||||||
export TARGET_AS=llvm-as
|
|
||||||
export TARGET_OBJCOPY=llvm-objcopy
|
|
||||||
export TARGET_RANLIB=llvm-ranlib
|
|
||||||
|
|
||||||
mkdir -p "$OUT/lib"
|
|
||||||
|
|
||||||
cp .clusterfuzzlite/*_fuzzer.options "$OUT/"
|
|
||||||
|
|
||||||
for f in .clusterfuzzlite/*_fuzzer.cpp; do
|
|
||||||
fuzzer=$(basename "$f" .cpp)
|
|
||||||
cp -f "$f" src/fuzzer.cpp
|
|
||||||
pio run -vvv --environment "$PIO_ENV"
|
|
||||||
program="$PLATFORMIO_WORKSPACE_DIR/build/$PIO_ENV/program"
|
|
||||||
cp "$program" "$OUT/$fuzzer"
|
|
||||||
|
|
||||||
# Copy shared libraries used by the fuzzer.
|
|
||||||
read -d '' -ra shared_libs < <(ldd "$program" | sed -n 's/[^=]\+=> \([^ ]\+\).*/\1/p') || true
|
|
||||||
cp -f "${shared_libs[@]}" "$OUT/lib/"
|
|
||||||
|
|
||||||
# Build the initial fuzzer seed corpus.
|
|
||||||
corpus_name="${fuzzer}_seed_corpus"
|
|
||||||
corpus_generator="$PWD/.clusterfuzzlite/${corpus_name}.py"
|
|
||||||
if [[ -f $corpus_generator ]]; then
|
|
||||||
mkdir "$corpus_name"
|
|
||||||
pushd "$corpus_name"
|
|
||||||
python3 "$corpus_generator"
|
|
||||||
popd
|
|
||||||
zip -D "$OUT/${corpus_name}.zip" "$corpus_name"/*
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
"""PlatformIO build script (post: runs after other Meshtastic scripts)."""
|
|
||||||
|
|
||||||
import os
|
|
||||||
import shlex
|
|
||||||
|
|
||||||
from SCons.Script import DefaultEnvironment
|
|
||||||
|
|
||||||
env = DefaultEnvironment()
|
|
||||||
|
|
||||||
# Remove any static libraries from the LIBS environment. Static libraries are
|
|
||||||
# handled in platformio-clusterfuzzlite-pre.py.
|
|
||||||
static_libs = set(lib[2:] for lib in shlex.split(os.getenv("STATIC_LIBS")))
|
|
||||||
env.Replace(
|
|
||||||
LIBS=[
|
|
||||||
lib for lib in env["LIBS"] if not (isinstance(lib, str) and lib in static_libs)
|
|
||||||
],
|
|
||||||
)
|
|
||||||
|
|
||||||
# FrameworkArduino/portduino/main.cpp contains the "main" function the binary.
|
|
||||||
# The fuzzing framework also provides a "main" function and needs to be run
|
|
||||||
# before Meshtastic is started. We rename the "main" function for Meshtastic to
|
|
||||||
# "portduino_main" here so that it can be called inside the fuzzer.
|
|
||||||
env.AddPostAction(
|
|
||||||
"$BUILD_DIR/FrameworkArduino/portduino/main.cpp.o",
|
|
||||||
env.VerboseAction(
|
|
||||||
" ".join(
|
|
||||||
[
|
|
||||||
"$OBJCOPY",
|
|
||||||
"--redefine-sym=main=portduino_main",
|
|
||||||
"$BUILD_DIR/FrameworkArduino/portduino/main.cpp.o",
|
|
||||||
]
|
|
||||||
),
|
|
||||||
"Renaming main symbol to portduino_main",
|
|
||||||
),
|
|
||||||
)
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
"""PlatformIO build script (pre: runs before other Meshtastic scripts).
|
|
||||||
|
|
||||||
ClusterFuzzLite executes in a different container from the build. During the build,
|
|
||||||
attempt to link statically to as many dependencies as possible. For dependencies that
|
|
||||||
do not have static libraries, the shared library files are copied to the output
|
|
||||||
directory by the build.sh script.
|
|
||||||
"""
|
|
||||||
|
|
||||||
import glob
|
|
||||||
import os
|
|
||||||
import shlex
|
|
||||||
|
|
||||||
from SCons.Script import DefaultEnvironment, Literal
|
|
||||||
|
|
||||||
env = DefaultEnvironment()
|
|
||||||
|
|
||||||
cxxflags = shlex.split(os.getenv("CXXFLAGS"))
|
|
||||||
sanitizer_flags = shlex.split(os.getenv("SANITIZER_FLAGS"))
|
|
||||||
lib_fuzzing_engine = shlex.split(os.getenv("LIB_FUZZING_ENGINE"))
|
|
||||||
statics = glob.glob("/usr/lib/lib*.a") + glob.glob("/usr/lib/*/lib*.a")
|
|
||||||
no_static = set(("-ldl",))
|
|
||||||
|
|
||||||
|
|
||||||
def replaceStatic(lib):
|
|
||||||
"""Replace -l<libname> with the static .a file for the library."""
|
|
||||||
if not lib.startswith("-l") or lib in no_static:
|
|
||||||
return lib
|
|
||||||
static_name = f"/lib{lib[2:]}.a"
|
|
||||||
static = [s for s in statics if s.endswith(static_name)]
|
|
||||||
if len(static) == 1:
|
|
||||||
return static[0]
|
|
||||||
return lib
|
|
||||||
|
|
||||||
|
|
||||||
# Setup the environment for building with Clang and the OSS-Fuzz required build flags.
|
|
||||||
env.Append(
|
|
||||||
CFLAGS=os.getenv("CFLAGS"),
|
|
||||||
CXXFLAGS=cxxflags,
|
|
||||||
LIBSOURCE_DIRS=["/usr/lib/x86_64-linux-gnu"],
|
|
||||||
LINKFLAGS=cxxflags
|
|
||||||
+ sanitizer_flags
|
|
||||||
+ lib_fuzzing_engine
|
|
||||||
+ ["-stdlib=libc++", "-std=c++17"],
|
|
||||||
_LIBFLAGS=[replaceStatic(s) for s in shlex.split(os.getenv("STATIC_LIBS"))]
|
|
||||||
+ [
|
|
||||||
"/usr/lib/x86_64-linux-gnu/libunistring.a", # Needs to be at the end.
|
|
||||||
# Find the shared libraries in a subdirectory named lib
|
|
||||||
# within the same directory as the binary.
|
|
||||||
Literal("-Wl,-rpath,$ORIGIN/lib"),
|
|
||||||
"-Wl,-z,origin",
|
|
||||||
],
|
|
||||||
)
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
language: c++
|
|
||||||
@@ -1,206 +0,0 @@
|
|||||||
// Fuzzer implementation that sends MeshPackets to Router::enqueueReceivedMessage.
|
|
||||||
#include <condition_variable>
|
|
||||||
#include <cstdlib>
|
|
||||||
#include <mutex>
|
|
||||||
#include <pb_decode.h>
|
|
||||||
#include <stdexcept>
|
|
||||||
#include <string>
|
|
||||||
#include <thread>
|
|
||||||
|
|
||||||
#include "PortduinoGPIO.h"
|
|
||||||
#include "PortduinoGlue.h"
|
|
||||||
#include "PowerFSM.h"
|
|
||||||
#include "mesh/MeshTypes.h"
|
|
||||||
#include "mesh/NodeDB.h"
|
|
||||||
#include "mesh/Router.h"
|
|
||||||
#include "mesh/TypeConversions.h"
|
|
||||||
#include "mesh/mesh-pb-constants.h"
|
|
||||||
|
|
||||||
namespace
|
|
||||||
{
|
|
||||||
constexpr uint32_t nodeId = 0x12345678;
|
|
||||||
// Set to true when lateInitVariant finishes. Used to ensure lateInitVariant was called during startup.
|
|
||||||
bool hasBeenConfigured = false;
|
|
||||||
|
|
||||||
// These are used to block the Arduino loop() function until a fuzzer input is ready. This is
|
|
||||||
// an optimization that prevents a sleep from happening before the loop is run. The Arduino loop
|
|
||||||
// function calls loopCanSleep() before sleeping. loopCanSleep is implemented here in the fuzzer
|
|
||||||
// and blocks until runLoopOnce() is called to signal for the loop to run.
|
|
||||||
bool fuzzerRunning = false; // Set to true once LLVMFuzzerTestOneInput has started running.
|
|
||||||
bool loopCanRun = true; // The main Arduino loop() can run when this is true.
|
|
||||||
bool loopIsWaiting = false; // The main Arduino loop() is waiting to be signaled to run.
|
|
||||||
bool loopShouldExit = false; // Indicates that the main Arduino thread should exit by throwing ShouldExitException.
|
|
||||||
std::mutex loopLock;
|
|
||||||
std::condition_variable loopCV;
|
|
||||||
std::thread meshtasticThread;
|
|
||||||
|
|
||||||
// This exception is thrown when the portuino main thread should exit.
|
|
||||||
class ShouldExitException : public std::runtime_error
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
using std::runtime_error::runtime_error;
|
|
||||||
};
|
|
||||||
|
|
||||||
// Start the loop for one test case and wait till the loop has completed. This ensures fuzz
|
|
||||||
// test cases do not overlap with one another. This helps the fuzzer attribute a crash to the
|
|
||||||
// single, currently running, test case.
|
|
||||||
void runLoopOnce()
|
|
||||||
{
|
|
||||||
realHardware = true; // Avoids delay(100) within portduino/main.cpp
|
|
||||||
std::unique_lock<std::mutex> lck(loopLock);
|
|
||||||
fuzzerRunning = true;
|
|
||||||
loopCanRun = true;
|
|
||||||
loopCV.notify_one();
|
|
||||||
loopCV.wait(lck, [] { return !loopCanRun && loopIsWaiting; });
|
|
||||||
}
|
|
||||||
} // namespace
|
|
||||||
|
|
||||||
// Called in the main Arduino loop function to determine if the loop can delay/sleep before running again.
|
|
||||||
// We use this as a way to block the loop from sleeping and to start the loop function immediately when a
|
|
||||||
// fuzzer input is ready.
|
|
||||||
bool loopCanSleep()
|
|
||||||
{
|
|
||||||
std::unique_lock<std::mutex> lck(loopLock);
|
|
||||||
loopIsWaiting = true;
|
|
||||||
loopCV.notify_one();
|
|
||||||
loopCV.wait(lck, [] { return loopCanRun || loopShouldExit; });
|
|
||||||
loopIsWaiting = false;
|
|
||||||
if (loopShouldExit)
|
|
||||||
throw ShouldExitException("exit");
|
|
||||||
if (!fuzzerRunning)
|
|
||||||
return true; // The loop can sleep before the fuzzer starts.
|
|
||||||
loopCanRun = false; // Only run the loop once before waiting again.
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Called just prior to starting Meshtastic. Allows for setting config values before startup.
|
|
||||||
void lateInitVariant()
|
|
||||||
{
|
|
||||||
settingsMap[logoutputlevel] = level_error;
|
|
||||||
channelFile.channels[0] = meshtastic_Channel{
|
|
||||||
.has_settings = true,
|
|
||||||
.settings =
|
|
||||||
meshtastic_ChannelSettings{
|
|
||||||
.psk = {.size = 1, .bytes = {/*defaultpskIndex=*/1}},
|
|
||||||
.name = "LongFast",
|
|
||||||
.uplink_enabled = true,
|
|
||||||
.has_module_settings = true,
|
|
||||||
.module_settings = {.position_precision = 16},
|
|
||||||
},
|
|
||||||
.role = meshtastic_Channel_Role_PRIMARY,
|
|
||||||
};
|
|
||||||
config.security.admin_key[0] = {
|
|
||||||
.size = 32,
|
|
||||||
.bytes = {0xcd, 0xc0, 0xb4, 0x3c, 0x53, 0x24, 0xdf, 0x13, 0xca, 0x5a, 0xa6, 0x0c, 0x0d, 0xec, 0x85, 0x5a,
|
|
||||||
0x4c, 0xf6, 0x1a, 0x96, 0x04, 0x1a, 0x3e, 0xfc, 0xbb, 0x8e, 0x33, 0x71, 0xe5, 0xfc, 0xff, 0x3c},
|
|
||||||
};
|
|
||||||
config.security.admin_key_count = 1;
|
|
||||||
config.lora.region = meshtastic_Config_LoRaConfig_RegionCode_US;
|
|
||||||
moduleConfig.has_mqtt = true;
|
|
||||||
moduleConfig.mqtt = meshtastic_ModuleConfig_MQTTConfig{
|
|
||||||
.enabled = true,
|
|
||||||
.proxy_to_client_enabled = true,
|
|
||||||
};
|
|
||||||
moduleConfig.has_store_forward = true;
|
|
||||||
moduleConfig.store_forward = meshtastic_ModuleConfig_StoreForwardConfig{
|
|
||||||
.enabled = true,
|
|
||||||
.history_return_max = 4,
|
|
||||||
.history_return_window = 600,
|
|
||||||
.is_server = true,
|
|
||||||
};
|
|
||||||
meshtastic_Position fixedGPS = meshtastic_Position{
|
|
||||||
.has_latitude_i = true,
|
|
||||||
.latitude_i = static_cast<uint32_t>(1 * 1e7),
|
|
||||||
.has_longitude_i = true,
|
|
||||||
.longitude_i = static_cast<uint32_t>(3 * 1e7),
|
|
||||||
.has_altitude = true,
|
|
||||||
.altitude = 64,
|
|
||||||
.location_source = meshtastic_Position_LocSource_LOC_MANUAL,
|
|
||||||
};
|
|
||||||
nodeDB->setLocalPosition(fixedGPS);
|
|
||||||
config.has_position = true;
|
|
||||||
config.position.fixed_position = true;
|
|
||||||
meshtastic_NodeInfoLite *info = nodeDB->getMeshNode(nodeDB->getNodeNum());
|
|
||||||
info->has_position = true;
|
|
||||||
info->position = TypeConversions::ConvertToPositionLite(fixedGPS);
|
|
||||||
hasBeenConfigured = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
extern "C" {
|
|
||||||
int portduino_main(int argc, char **argv); // Renamed "main" function from Meshtastic binary.
|
|
||||||
|
|
||||||
// Start Meshtastic in a thread and wait till it has reached the ON state.
|
|
||||||
int LLVMFuzzerInitialize(int *argc, char ***argv)
|
|
||||||
{
|
|
||||||
settingsMap[maxtophone] = 5;
|
|
||||||
|
|
||||||
meshtasticThread = std::thread([program = *argv[0]]() {
|
|
||||||
char nodeIdStr[12];
|
|
||||||
strcpy(nodeIdStr, std::to_string(nodeId).c_str());
|
|
||||||
int argc = 7;
|
|
||||||
char *argv[] = {program, "-d", "/tmp/meshtastic", "-h", nodeIdStr, "-p", "0", nullptr};
|
|
||||||
try {
|
|
||||||
portduino_main(argc, argv);
|
|
||||||
} catch (const ShouldExitException &) {
|
|
||||||
}
|
|
||||||
});
|
|
||||||
std::atexit([] {
|
|
||||||
{
|
|
||||||
const std::lock_guard<std::mutex> lck(loopLock);
|
|
||||||
loopShouldExit = true;
|
|
||||||
loopCV.notify_one();
|
|
||||||
}
|
|
||||||
meshtasticThread.join();
|
|
||||||
});
|
|
||||||
|
|
||||||
// Wait for startup.
|
|
||||||
for (int i = 1; i < 20; ++i) {
|
|
||||||
if (powerFSM.getState() == &stateON) {
|
|
||||||
assert(hasBeenConfigured);
|
|
||||||
assert(router);
|
|
||||||
assert(nodeDB);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
std::this_thread::sleep_for(std::chrono::seconds(1));
|
|
||||||
}
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
// This is the main entrypoint for the fuzzer (the fuzz target). The fuzzer will provide an array of bytes to be
|
|
||||||
// interpreted by this method. To keep things simple, the bytes are interpreted as a binary serialized MeshPacket
|
|
||||||
// proto. Any crashes discovered by the fuzzer will be written to a file. Unserialize that file to print the MeshPacket
|
|
||||||
// that caused the failure.
|
|
||||||
//
|
|
||||||
// This guide provides best practices for writing a fuzzer target.
|
|
||||||
// https://github.com/google/fuzzing/blob/master/docs/good-fuzz-target.md
|
|
||||||
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t length)
|
|
||||||
{
|
|
||||||
meshtastic_MeshPacket p = meshtastic_MeshPacket_init_default;
|
|
||||||
pb_istream_t stream = pb_istream_from_buffer(data, length);
|
|
||||||
// Ignore any inputs that fail to decode or have fields set that are not transmitted over LoRa.
|
|
||||||
if (!pb_decode(&stream, &meshtastic_MeshPacket_msg, &p) || p.rx_time || p.rx_snr || p.priority || p.rx_rssi || p.delayed ||
|
|
||||||
p.public_key.size || p.next_hop || p.relay_node || p.tx_after)
|
|
||||||
return -1; // Reject: The input will not be added to the corpus.
|
|
||||||
if (p.which_payload_variant == meshtastic_MeshPacket_decoded_tag) {
|
|
||||||
meshtastic_Data d;
|
|
||||||
stream = pb_istream_from_buffer(p.decoded.payload.bytes, p.decoded.payload.size);
|
|
||||||
if (!pb_decode(&stream, &meshtastic_Data_msg, &d))
|
|
||||||
return -1; // Reject: The input will not be added to the corpus.
|
|
||||||
}
|
|
||||||
|
|
||||||
// Provide default values for a few fields so the fuzzer doesn't need to guess them.
|
|
||||||
if (p.from == 0)
|
|
||||||
p.from = nodeDB->getNodeNum();
|
|
||||||
if (p.to == 0)
|
|
||||||
p.to = nodeDB->getNodeNum();
|
|
||||||
static uint32_t packetId = 0;
|
|
||||||
if (p.id == 0)
|
|
||||||
p.id == ++packetId;
|
|
||||||
if (p.pki_encrypted && config.security.admin_key_count)
|
|
||||||
memcpy(&p.public_key, &config.security.admin_key[0], sizeof(p.public_key));
|
|
||||||
|
|
||||||
router->enqueueReceivedMessage(packetPool.allocCopy(p));
|
|
||||||
runLoopOnce();
|
|
||||||
return 0; // Accept: The input may be added to the corpus.
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
[libfuzzer]
|
|
||||||
max_len=256
|
|
||||||
@@ -1,168 +0,0 @@
|
|||||||
"""Generate an initial set of MeshPackets.
|
|
||||||
|
|
||||||
The fuzzer uses these MeshPackets as an initial seed of test candidates.
|
|
||||||
|
|
||||||
It's also good to add any previously discovered crash test cases to this list
|
|
||||||
to avoid future regressions.
|
|
||||||
|
|
||||||
If left unset, the following values will be automatically set by the fuzzer.
|
|
||||||
- to: automatically set to the running node's NodeID
|
|
||||||
- from: automatically set to the running node's NodeID
|
|
||||||
- id: automatically set to the value of an incrementing counter
|
|
||||||
|
|
||||||
Additionally, if `pki_encrypted` is populated in the packet, the first admin key
|
|
||||||
will be copied into the `public_key` field.
|
|
||||||
"""
|
|
||||||
|
|
||||||
import base64
|
|
||||||
|
|
||||||
from meshtastic import BROADCAST_NUM
|
|
||||||
from meshtastic.protobuf import (
|
|
||||||
admin_pb2,
|
|
||||||
atak_pb2,
|
|
||||||
mesh_pb2,
|
|
||||||
portnums_pb2,
|
|
||||||
telemetry_pb2,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def From(node: int = 9):
|
|
||||||
"""Return a dict suitable for **kwargs for populating the 'from' field.
|
|
||||||
|
|
||||||
'from' is a reserved keyword in Python. It can't be used directly as an
|
|
||||||
argument to the MeshPacket constructor. Rather **From() can be used as
|
|
||||||
the final argument to provide the from node as a **kwarg.
|
|
||||||
|
|
||||||
Defaults to 9 if no value is provided.
|
|
||||||
"""
|
|
||||||
return {"from": node}
|
|
||||||
|
|
||||||
|
|
||||||
packets = (
|
|
||||||
(
|
|
||||||
"position",
|
|
||||||
mesh_pb2.MeshPacket(
|
|
||||||
decoded=mesh_pb2.Data(
|
|
||||||
portnum=portnums_pb2.PortNum.POSITION_APP,
|
|
||||||
payload=mesh_pb2.Position(
|
|
||||||
latitude_i=int(1 * 1e7),
|
|
||||||
longitude_i=int(2 * 1e7),
|
|
||||||
altitude=5,
|
|
||||||
precision_bits=32,
|
|
||||||
).SerializeToString(),
|
|
||||||
),
|
|
||||||
to=BROADCAST_NUM,
|
|
||||||
**From(),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"telemetry",
|
|
||||||
mesh_pb2.MeshPacket(
|
|
||||||
decoded=mesh_pb2.Data(
|
|
||||||
portnum=portnums_pb2.PortNum.TELEMETRY_APP,
|
|
||||||
payload=telemetry_pb2.Telemetry(
|
|
||||||
time=1736192207,
|
|
||||||
device_metrics=telemetry_pb2.DeviceMetrics(
|
|
||||||
battery_level=101,
|
|
||||||
channel_utilization=8,
|
|
||||||
air_util_tx=2,
|
|
||||||
uptime_seconds=42,
|
|
||||||
),
|
|
||||||
).SerializeToString(),
|
|
||||||
),
|
|
||||||
to=BROADCAST_NUM,
|
|
||||||
**From(),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"text",
|
|
||||||
mesh_pb2.MeshPacket(
|
|
||||||
decoded=mesh_pb2.Data(
|
|
||||||
portnum=portnums_pb2.PortNum.TEXT_MESSAGE_APP,
|
|
||||||
payload=b"Hello world",
|
|
||||||
),
|
|
||||||
to=BROADCAST_NUM,
|
|
||||||
**From(),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"user",
|
|
||||||
mesh_pb2.MeshPacket(
|
|
||||||
decoded=mesh_pb2.Data(
|
|
||||||
portnum=portnums_pb2.PortNum.NODEINFO_APP,
|
|
||||||
payload=mesh_pb2.User(
|
|
||||||
id="!00000009",
|
|
||||||
long_name="Node 9",
|
|
||||||
short_name="N9",
|
|
||||||
macaddr=b"\x00\x00\x00\x00\x00\x09",
|
|
||||||
hw_model=mesh_pb2.HardwareModel.RAK4631,
|
|
||||||
public_key=base64.b64decode(
|
|
||||||
"L0ih/6F41itofdE8mYyHk1SdfOJ/QRM1KQ+pO4vEEjQ="
|
|
||||||
),
|
|
||||||
).SerializeToString(),
|
|
||||||
),
|
|
||||||
**From(),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"traceroute",
|
|
||||||
mesh_pb2.MeshPacket(
|
|
||||||
decoded=mesh_pb2.Data(
|
|
||||||
portnum=portnums_pb2.PortNum.TRACEROUTE_APP,
|
|
||||||
payload=mesh_pb2.RouteDiscovery(
|
|
||||||
route=[10],
|
|
||||||
).SerializeToString(),
|
|
||||||
),
|
|
||||||
**From(),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"routing",
|
|
||||||
mesh_pb2.MeshPacket(
|
|
||||||
decoded=mesh_pb2.Data(
|
|
||||||
portnum=portnums_pb2.PortNum.ROUTING_APP,
|
|
||||||
payload=mesh_pb2.Routing(
|
|
||||||
error_reason=mesh_pb2.Routing.NO_RESPONSE,
|
|
||||||
).SerializeToString(),
|
|
||||||
),
|
|
||||||
**From(),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"admin",
|
|
||||||
mesh_pb2.MeshPacket(
|
|
||||||
decoded=mesh_pb2.Data(
|
|
||||||
portnum=portnums_pb2.PortNum.ADMIN_APP,
|
|
||||||
payload=admin_pb2.AdminMessage(
|
|
||||||
get_owner_request=True,
|
|
||||||
).SerializeToString(),
|
|
||||||
),
|
|
||||||
pki_encrypted=True,
|
|
||||||
**From(),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"atak",
|
|
||||||
mesh_pb2.MeshPacket(
|
|
||||||
decoded=mesh_pb2.Data(
|
|
||||||
portnum=portnums_pb2.PortNum.ATAK_PLUGIN,
|
|
||||||
payload=atak_pb2.TAKPacket(
|
|
||||||
is_compressed=True,
|
|
||||||
# Note, the strings are not valid for a compressed message, but will
|
|
||||||
# give the fuzzer a starting point.
|
|
||||||
contact=atak_pb2.Contact(
|
|
||||||
callsign="callsign", device_callsign="device_callsign"
|
|
||||||
),
|
|
||||||
chat=atak_pb2.GeoChat(
|
|
||||||
message="message", to="to", to_callsign="to_callsign"
|
|
||||||
),
|
|
||||||
).SerializeToString(),
|
|
||||||
),
|
|
||||||
**From(),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
|
|
||||||
for name, packet in packets:
|
|
||||||
with open(f"{name}.MeshPacket", "wb") as f:
|
|
||||||
f.write(packet.SerializeToString())
|
|
||||||
@@ -1,183 +0,0 @@
|
|||||||
# Copyright (c) 2014-present PlatformIO <contact@platformio.org>
|
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
|
|
||||||
#####################################################################################
|
|
||||||
#
|
|
||||||
# INSTALLATION
|
|
||||||
#
|
|
||||||
# Please visit > https://docs.platformio.org/en/latest/core/installation/udev-rules.html
|
|
||||||
#
|
|
||||||
#####################################################################################
|
|
||||||
|
|
||||||
#
|
|
||||||
# Boards
|
|
||||||
#
|
|
||||||
|
|
||||||
# CP210X USB UART
|
|
||||||
ATTRS{idVendor}=="10c4", ATTRS{idProduct}=="ea[67][013]", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
ATTRS{idVendor}=="10c4", ATTRS{idProduct}=="80a9", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# FT231XS USB UART
|
|
||||||
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6015", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Prolific Technology, Inc. PL2303 Serial Port
|
|
||||||
ATTRS{idVendor}=="067b", ATTRS{idProduct}=="2303", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# QinHeng Electronics HL-340 USB-Serial adapter
|
|
||||||
ATTRS{idVendor}=="1a86", ATTRS{idProduct}=="7523", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
# QinHeng Electronics CH343 USB-Serial adapter
|
|
||||||
ATTRS{idVendor}=="1a86", ATTRS{idProduct}=="55d3", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
# QinHeng Electronics CH9102 USB-Serial adapter
|
|
||||||
ATTRS{idVendor}=="1a86", ATTRS{idProduct}=="55d4", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Arduino boards
|
|
||||||
ATTRS{idVendor}=="2341", ATTRS{idProduct}=="[08][023]*", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
ATTRS{idVendor}=="2a03", ATTRS{idProduct}=="[08][02]*", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Arduino SAM-BA
|
|
||||||
ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="6124", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{MTP_NO_PROBE}="1"
|
|
||||||
|
|
||||||
# Digistump boards
|
|
||||||
ATTRS{idVendor}=="16d0", ATTRS{idProduct}=="0753", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Maple with DFU
|
|
||||||
ATTRS{idVendor}=="1eaf", ATTRS{idProduct}=="000[34]", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# USBtiny
|
|
||||||
ATTRS{idProduct}=="0c9f", ATTRS{idVendor}=="1781", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# USBasp V2.0
|
|
||||||
ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="05dc", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Teensy boards
|
|
||||||
ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789B]?", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789A]?", ENV{MTP_NO_PROBE}="1"
|
|
||||||
SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789ABCD]?", MODE:="0666"
|
|
||||||
KERNEL=="ttyACM*", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789B]?", MODE:="0666"
|
|
||||||
|
|
||||||
# TI Stellaris Launchpad
|
|
||||||
ATTRS{idVendor}=="1cbe", ATTRS{idProduct}=="00fd", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# TI MSP430 Launchpad
|
|
||||||
ATTRS{idVendor}=="0451", ATTRS{idProduct}=="f432", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# GD32V DFU Bootloader
|
|
||||||
ATTRS{idVendor}=="28e9", ATTRS{idProduct}=="0189", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# FireBeetle-ESP32
|
|
||||||
ATTRS{idVendor}=="1a86", ATTRS{idProduct}=="7522", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Wio Terminal
|
|
||||||
ATTRS{idVendor}=="2886", ATTRS{idProduct}=="[08]02d", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Raspberry Pi Pico
|
|
||||||
ATTRS{idVendor}=="2e8a", ATTRS{idProduct}=="[01]*", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# AIR32F103
|
|
||||||
ATTRS{idVendor}=="0d28", ATTRS{idProduct}=="0204", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# STM32 virtual COM port
|
|
||||||
ATTRS{idVendor}=="0483", ATTRS{idProduct}=="5740", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
#
|
|
||||||
# Debuggers
|
|
||||||
#
|
|
||||||
|
|
||||||
# Black Magic Probe
|
|
||||||
SUBSYSTEM=="tty", ATTRS{interface}=="Black Magic GDB Server", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
SUBSYSTEM=="tty", ATTRS{interface}=="Black Magic UART Port", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# opendous and estick
|
|
||||||
ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="204f", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Original FT232/FT245/FT2232/FT232H/FT4232
|
|
||||||
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="60[01][104]", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# DISTORTEC JTAG-lock-pick Tiny 2
|
|
||||||
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="8220", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# TUMPA, TUMPA Lite
|
|
||||||
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="8a9[89]", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# XDS100v2
|
|
||||||
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="a6d0", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Xverve Signalyzer Tool (DT-USB-ST), Signalyzer LITE (DT-USB-SLITE)
|
|
||||||
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="bca[01]", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# TI/Luminary Stellaris Evaluation Board FTDI (several)
|
|
||||||
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="bcd[9a]", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# egnite Turtelizer 2
|
|
||||||
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="bdc8", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Section5 ICEbear
|
|
||||||
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="c14[01]", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Amontec JTAGkey and JTAGkey-tiny
|
|
||||||
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="cff8", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# TI ICDI
|
|
||||||
ATTRS{idVendor}=="0451", ATTRS{idProduct}=="c32a", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# STLink probes
|
|
||||||
ATTRS{idVendor}=="0483", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Hilscher NXHX Boards
|
|
||||||
ATTRS{idVendor}=="0640", ATTRS{idProduct}=="0028", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Hitex probes
|
|
||||||
ATTRS{idVendor}=="0640", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Altera USB Blaster
|
|
||||||
ATTRS{idVendor}=="09fb", ATTRS{idProduct}=="6001", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Amontec JTAGkey-HiSpeed
|
|
||||||
ATTRS{idVendor}=="0fbb", ATTRS{idProduct}=="1000", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# SEGGER J-Link
|
|
||||||
ATTRS{idVendor}=="1366", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Raisonance RLink
|
|
||||||
ATTRS{idVendor}=="138e", ATTRS{idProduct}=="9000", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Debug Board for Neo1973
|
|
||||||
ATTRS{idVendor}=="1457", ATTRS{idProduct}=="5118", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Olimex probes
|
|
||||||
ATTRS{idVendor}=="15ba", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# USBprog with OpenOCD firmware
|
|
||||||
ATTRS{idVendor}=="1781", ATTRS{idProduct}=="0c63", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# TI/Luminary Stellaris In-Circuit Debug Interface (ICDI) Board
|
|
||||||
ATTRS{idVendor}=="1cbe", ATTRS{idProduct}=="00fd", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Marvell Sheevaplug
|
|
||||||
ATTRS{idVendor}=="9e88", ATTRS{idProduct}=="9e8f", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Keil Software, Inc. ULink
|
|
||||||
ATTRS{idVendor}=="c251", ATTRS{idProduct}=="2710", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# CMSIS-DAP compatible adapters
|
|
||||||
ATTRS{product}=="*CMSIS-DAP*", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Atmel AVR Dragon
|
|
||||||
ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="2107", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Espressif USB JTAG/serial debug unit
|
|
||||||
ATTRS{idVendor}=="303a", ATTRS{idProduct}=="1001", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
|
|
||||||
# Zephyr framework USB CDC-ACM
|
|
||||||
ATTRS{idVendor}=="2fe3", ATTRS{idProduct}=="0100", MODE="0666", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
|
|
||||||
@@ -1,9 +1,6 @@
|
|||||||
FROM mcr.microsoft.com/devcontainers/cpp:1-debian-12
|
FROM mcr.microsoft.com/devcontainers/cpp:1-debian-12
|
||||||
|
|
||||||
USER root
|
# [Optional] Uncomment this section to install additional packages.
|
||||||
|
|
||||||
# trunk-ignore(terrascan/AC_DOCKER_0002): Known terrascan issue
|
|
||||||
# trunk-ignore(hadolint/DL3008): Use latest version of packages
|
|
||||||
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
||||||
&& apt-get -y install --no-install-recommends \
|
&& apt-get -y install --no-install-recommends \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
@@ -23,16 +20,6 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
|||||||
python3-wheel \
|
python3-wheel \
|
||||||
wget \
|
wget \
|
||||||
zip \
|
zip \
|
||||||
usbutils \
|
|
||||||
hwdata \
|
|
||||||
gpg \
|
|
||||||
gnupg2 \
|
|
||||||
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
RUN pipx install platformio==6.1.15
|
RUN pipx install platformio==6.1.15
|
||||||
|
|
||||||
COPY 99-platformio-udev.rules /etc/udev/rules.d/99-platformio-udev.rules
|
|
||||||
|
|
||||||
USER vscode
|
|
||||||
|
|
||||||
HEALTHCHECK NONE
|
|
||||||
@@ -13,24 +13,13 @@
|
|||||||
},
|
},
|
||||||
"customizations": {
|
"customizations": {
|
||||||
"vscode": {
|
"vscode": {
|
||||||
"extensions": [
|
"extensions": ["ms-vscode.cpptools", "platformio.platformio-ide"]
|
||||||
"ms-vscode.cpptools",
|
|
||||||
"platformio.platformio-ide",
|
|
||||||
"Trunk.io"
|
|
||||||
],
|
|
||||||
"unwantedRecommendations": ["ms-azuretools.vscode-docker"],
|
|
||||||
"settings": {
|
|
||||||
"extensions.ignoreRecommendations": true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
||||||
"forwardPorts": [4403],
|
"forwardPorts": [4403],
|
||||||
|
|
||||||
// Use "--device=" to make a local device available inside the container.
|
|
||||||
// "runArgs": ["--device=/dev/ttyACM0"],
|
|
||||||
|
|
||||||
// Run commands to prepare the container for use
|
// Run commands to prepare the container for use
|
||||||
"postCreateCommand": ".devcontainer/setup.sh"
|
"postCreateCommand": ".devcontainer/setup.sh"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
.gitignore
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
# Absolute path to the local meshtastic config.yaml file
|
|
||||||
CONFIG_PATH=/path/to/meshtastic/config.yaml
|
|
||||||
# USB device to passthrough (`lsusb -t`: look for `ch341`)
|
|
||||||
USB_DEVICE=/dev/bus/usb/001/037
|
|
||||||
10
.github/actions/build-variant/action.yml
vendored
10
.github/actions/build-variant/action.yml
vendored
@@ -68,12 +68,6 @@ runs:
|
|||||||
sed -i '/DDEBUG_HEAP/d' ${INI_FILE}
|
sed -i '/DDEBUG_HEAP/d' ${INI_FILE}
|
||||||
done
|
done
|
||||||
|
|
||||||
- name: PlatformIO ${{ inputs.arch }} download cache
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: ~/.platformio/.cache
|
|
||||||
key: pio-cache-${{ inputs.arch }}-${{ hashFiles('.github/actions/**', '**.ini') }}
|
|
||||||
|
|
||||||
- name: Build ${{ inputs.board }}
|
- name: Build ${{ inputs.board }}
|
||||||
shell: bash
|
shell: bash
|
||||||
run: ${{ inputs.build-script-path }} ${{ inputs.board }}
|
run: ${{ inputs.build-script-path }} ${{ inputs.board }}
|
||||||
@@ -89,13 +83,13 @@ runs:
|
|||||||
|
|
||||||
- name: Get release version string
|
- name: Get release version string
|
||||||
shell: bash
|
shell: bash
|
||||||
run: echo "long=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
run: echo "version=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
||||||
id: version
|
id: version
|
||||||
|
|
||||||
- name: Store binaries as an artifact
|
- name: Store binaries as an artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: firmware-${{ inputs.arch }}-${{ inputs.board }}-${{ steps.version.outputs.long }}.zip
|
name: firmware-${{ inputs.arch }}-${{ inputs.board }}-${{ steps.version.outputs.version }}.zip
|
||||||
overwrite: true
|
overwrite: true
|
||||||
path: |
|
path: |
|
||||||
${{ inputs.artifact-paths }}
|
${{ inputs.artifact-paths }}
|
||||||
|
|||||||
13
.github/actions/setup-base/action.yml
vendored
13
.github/actions/setup-base/action.yml
vendored
@@ -20,16 +20,19 @@ runs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get -y update --fix-missing
|
sudo apt-get -y update --fix-missing
|
||||||
sudo apt-get install -y cppcheck libbluetooth-dev libgpiod-dev libyaml-cpp-dev lsb-release
|
sudo apt-get install -y cppcheck libbluetooth-dev libgpiod-dev libyaml-cpp-dev
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: 3.x
|
python-version: 3.x
|
||||||
cache: pip
|
|
||||||
cache-dependency-path: |
|
# - name: Cache python libs
|
||||||
.github/actions/**
|
# uses: actions/cache@v4
|
||||||
**.ini
|
# id: cache-pip # needed in if test
|
||||||
|
# with:
|
||||||
|
# path: ~/.cache/pip
|
||||||
|
# key: ${{ runner.os }}-pip
|
||||||
|
|
||||||
- name: Upgrade python tools
|
- name: Upgrade python tools
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
14
.github/actions/setup-native/action.yml
vendored
14
.github/actions/setup-native/action.yml
vendored
@@ -1,14 +0,0 @@
|
|||||||
name: Setup native build
|
|
||||||
description: Install libraries needed for building the Native/Portduino build
|
|
||||||
|
|
||||||
runs:
|
|
||||||
using: composite
|
|
||||||
steps:
|
|
||||||
- name: Setup base
|
|
||||||
id: base
|
|
||||||
uses: ./.github/actions/setup-base
|
|
||||||
|
|
||||||
- name: Install libs needed for native build
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
sudo apt-get install -y libbluetooth-dev libgpiod-dev libyaml-cpp-dev openssl libssl-dev libulfius-dev liborcania-dev libusb-1.0-0-dev libi2c-dev
|
|
||||||
72
.github/workflows/build_debian_src.yml
vendored
72
.github/workflows/build_debian_src.yml
vendored
@@ -1,72 +0,0 @@
|
|||||||
name: Build Debian Source Package
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_call:
|
|
||||||
secrets:
|
|
||||||
PPA_GPG_PRIVATE_KEY:
|
|
||||||
required: true
|
|
||||||
inputs:
|
|
||||||
series:
|
|
||||||
description: Ubuntu/Debian series to target
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
build_location:
|
|
||||||
description: Location where build will execute
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
packages: write
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-debian-src:
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
path: meshtasticd
|
|
||||||
ref: ${{github.event.pull_request.head.ref}}
|
|
||||||
repository: ${{github.event.pull_request.head.repo.full_name}}
|
|
||||||
|
|
||||||
- name: Install deps
|
|
||||||
shell: bash
|
|
||||||
working-directory: meshtasticd
|
|
||||||
run: |
|
|
||||||
sudo apt-get update -y --fix-missing
|
|
||||||
sudo apt-get install -y software-properties-common build-essential devscripts equivs
|
|
||||||
sudo add-apt-repository ppa:meshtastic/build-tools -y
|
|
||||||
sudo apt-get update -y --fix-missing
|
|
||||||
sudo mk-build-deps --install --remove --tool='apt-get -o Debug::pkgProblemResolver=yes --no-install-recommends --yes' debian/control
|
|
||||||
|
|
||||||
- name: Import GPG key
|
|
||||||
uses: crazy-max/ghaction-import-gpg@v6
|
|
||||||
with:
|
|
||||||
gpg_private_key: ${{ secrets.PPA_GPG_PRIVATE_KEY }}
|
|
||||||
id: gpg
|
|
||||||
|
|
||||||
- name: Get release version string
|
|
||||||
working-directory: meshtasticd
|
|
||||||
run: |
|
|
||||||
echo "deb=$(./bin/buildinfo.py deb)" >> $GITHUB_OUTPUT
|
|
||||||
env:
|
|
||||||
BUILD_LOCATION: ${{ inputs.build_location }}
|
|
||||||
id: version
|
|
||||||
|
|
||||||
- name: Fetch libdeps, package debian source
|
|
||||||
working-directory: meshtasticd
|
|
||||||
run: debian/ci_pack_sdeb.sh
|
|
||||||
env:
|
|
||||||
SERIES: ${{ inputs.series }}
|
|
||||||
GPG_KEY_ID: ${{ steps.gpg.outputs.keyid }}
|
|
||||||
PKG_VERSION: ${{ steps.version.outputs.deb }}
|
|
||||||
|
|
||||||
- name: Store binaries as an artifact
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: firmware-debian-${{ steps.version.outputs.deb }}~${{ inputs.series }}-src
|
|
||||||
overwrite: true
|
|
||||||
path: |
|
|
||||||
meshtasticd_${{ steps.version.outputs.deb }}*
|
|
||||||
85
.github/workflows/build_native.yml
vendored
Normal file
85
.github/workflows/build_native.yml
vendored
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
name: Build Native
|
||||||
|
|
||||||
|
on: workflow_call
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
packages: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-native:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Install libs needed for native build
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
sudo apt-get update --fix-missing
|
||||||
|
sudo apt-get install -y libbluetooth-dev libgpiod-dev libyaml-cpp-dev openssl libssl-dev libulfius-dev liborcania-dev
|
||||||
|
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
ref: ${{github.event.pull_request.head.ref}}
|
||||||
|
repository: ${{github.event.pull_request.head.repo.full_name}}
|
||||||
|
|
||||||
|
- name: Upgrade python tools
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install -U platformio adafruit-nrfutil
|
||||||
|
pip install -U meshtastic --pre
|
||||||
|
|
||||||
|
- name: Upgrade platformio
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
pio upgrade
|
||||||
|
|
||||||
|
- name: Build Native
|
||||||
|
run: bin/build-native.sh
|
||||||
|
|
||||||
|
- 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-native-${{ steps.version.outputs.version }}.zip
|
||||||
|
overwrite: true
|
||||||
|
path: |
|
||||||
|
release/meshtasticd_linux_x86_64
|
||||||
|
bin/config-dist.yaml
|
||||||
|
|
||||||
|
- name: Docker login
|
||||||
|
if: ${{ github.event_name != 'pull_request_target' && github.event_name != 'pull_request' }}
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
continue-on-error: true # FIXME: Failing docker login auth
|
||||||
|
with:
|
||||||
|
username: meshtastic
|
||||||
|
password: ${{ secrets.DOCKER_FIRMWARE_TOKEN }}
|
||||||
|
|
||||||
|
- name: Docker setup
|
||||||
|
if: ${{ github.event_name != 'pull_request_target' && github.event_name != 'pull_request' }}
|
||||||
|
continue-on-error: true # FIXME: Failing docker login auth
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: Docker build and push tagged versions
|
||||||
|
if: ${{ github.event_name == 'workflow_dispatch' }}
|
||||||
|
continue-on-error: true # FIXME: Failing docker login auth
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: ./Dockerfile
|
||||||
|
push: true
|
||||||
|
tags: meshtastic/device-simulator:${{ steps.version.outputs.version }}
|
||||||
|
|
||||||
|
- name: Docker build and push
|
||||||
|
if: ${{ github.ref == 'refs/heads/master' && github.event_name != 'pull_request_target' && github.event_name != 'pull_request' }}
|
||||||
|
continue-on-error: true # FIXME: Failing docker login auth
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: ./Dockerfile
|
||||||
|
push: true
|
||||||
|
tags: meshtastic/device-simulator:latest
|
||||||
52
.github/workflows/build_raspbian.yml
vendored
Normal file
52
.github/workflows/build_raspbian.yml
vendored
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
name: Build Raspbian
|
||||||
|
|
||||||
|
on: workflow_call
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
packages: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-raspbian:
|
||||||
|
runs-on: [self-hosted, linux, ARM64]
|
||||||
|
steps:
|
||||||
|
- name: Install libbluetooth
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
sudo apt-get update -y --fix-missing
|
||||||
|
sudo apt-get install -y libbluetooth-dev libgpiod-dev libyaml-cpp-dev openssl libssl-dev libulfius-dev liborcania-dev
|
||||||
|
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
ref: ${{github.event.pull_request.head.ref}}
|
||||||
|
repository: ${{github.event.pull_request.head.repo.full_name}}
|
||||||
|
|
||||||
|
- name: Upgrade python tools
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install -U platformio adafruit-nrfutil
|
||||||
|
pip install -U meshtastic --pre
|
||||||
|
|
||||||
|
- name: Upgrade platformio
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
pio upgrade
|
||||||
|
|
||||||
|
- name: Build Raspbian
|
||||||
|
run: bin/build-native.sh
|
||||||
|
|
||||||
|
- 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-raspbian-${{ steps.version.outputs.version }}.zip
|
||||||
|
overwrite: true
|
||||||
|
path: |
|
||||||
|
release/meshtasticd_linux_aarch64
|
||||||
|
bin/config-dist.yaml
|
||||||
52
.github/workflows/build_raspbian_armv7l.yml
vendored
Normal file
52
.github/workflows/build_raspbian_armv7l.yml
vendored
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
name: Build Raspbian Arm
|
||||||
|
|
||||||
|
on: workflow_call
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
packages: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-raspbian-armv7l:
|
||||||
|
runs-on: [self-hosted, linux, ARM]
|
||||||
|
steps:
|
||||||
|
- name: Install libbluetooth
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
sudo apt-get update -y --fix-missing
|
||||||
|
sudo apt-get install -y libbluetooth-dev libgpiod-dev libyaml-cpp-dev openssl libssl-dev libulfius-dev liborcania-dev
|
||||||
|
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
ref: ${{github.event.pull_request.head.ref}}
|
||||||
|
repository: ${{github.event.pull_request.head.repo.full_name}}
|
||||||
|
|
||||||
|
- name: Upgrade python tools
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install -U platformio adafruit-nrfutil
|
||||||
|
pip install -U meshtastic --pre
|
||||||
|
|
||||||
|
- name: Upgrade platformio
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
pio upgrade
|
||||||
|
|
||||||
|
- name: Build Raspbian
|
||||||
|
run: bin/build-native.sh
|
||||||
|
|
||||||
|
- 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-raspbian-armv7l-${{ steps.version.outputs.version }}.zip
|
||||||
|
overwrite: true
|
||||||
|
path: |
|
||||||
|
release/meshtasticd_linux_armv7l
|
||||||
|
bin/config-dist.yaml
|
||||||
51
.github/workflows/daily_packaging.yml
vendored
51
.github/workflows/daily_packaging.yml
vendored
@@ -1,51 +0,0 @@
|
|||||||
name: Daily Packaging
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: 0 9 * * *
|
|
||||||
workflow_dispatch:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
paths:
|
|
||||||
- debian/**
|
|
||||||
- "*.rpkg"
|
|
||||||
- .github/workflows/nightly_packaging.yml
|
|
||||||
- .github/workflows/build_debian_src.yml
|
|
||||||
- .github/workflows/package_ppa.yml
|
|
||||||
- .github/workflows/package_obs.yml
|
|
||||||
- .github/workflows/hook_copr.yml
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
packages: write
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
docker-multiarch:
|
|
||||||
uses: ./.github/workflows/docker_manifest.yml
|
|
||||||
with:
|
|
||||||
release_channel: daily
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
package-ppa:
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
series: [plucky, oracular, noble, jammy]
|
|
||||||
uses: ./.github/workflows/package_ppa.yml
|
|
||||||
with:
|
|
||||||
ppa_repo: ppa:meshtastic/daily
|
|
||||||
series: ${{ matrix.series }}
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
package-obs:
|
|
||||||
uses: ./.github/workflows/package_obs.yml
|
|
||||||
with:
|
|
||||||
obs_project: network:Meshtastic:daily
|
|
||||||
series: unstable
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
hook-copr:
|
|
||||||
uses: ./.github/workflows/hook_copr.yml
|
|
||||||
with:
|
|
||||||
copr_project: daily
|
|
||||||
secrets: inherit
|
|
||||||
92
.github/workflows/docker_build.yml
vendored
92
.github/workflows/docker_build.yml
vendored
@@ -1,92 +0,0 @@
|
|||||||
name: Build Docker
|
|
||||||
|
|
||||||
# Build Docker image, push untagged (digest-only)
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_call:
|
|
||||||
secrets:
|
|
||||||
DOCKER_FIRMWARE_TOKEN:
|
|
||||||
required: false # Only required for push
|
|
||||||
inputs:
|
|
||||||
distro:
|
|
||||||
description: Distro to target
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
# choices: [debian, alpine]
|
|
||||||
platform:
|
|
||||||
description: Platform to target
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
runs-on:
|
|
||||||
description: Runner to use
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
push:
|
|
||||||
description: Push images to registry
|
|
||||||
required: false
|
|
||||||
type: boolean
|
|
||||||
default: false
|
|
||||||
outputs:
|
|
||||||
digest:
|
|
||||||
description: Digest of built image
|
|
||||||
value: ${{ jobs.docker-build.outputs.digest }}
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
packages: write
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
docker-build:
|
|
||||||
outputs:
|
|
||||||
digest: ${{ steps.docker_variant.outputs.digest }}
|
|
||||||
runs-on: ${{ inputs.runs-on }}
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
ref: ${{github.event.pull_request.head.ref}}
|
|
||||||
repository: ${{github.event.pull_request.head.repo.full_name}}
|
|
||||||
|
|
||||||
- name: Get release version string
|
|
||||||
run: |
|
|
||||||
echo "long=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
|
||||||
id: version
|
|
||||||
|
|
||||||
- name: Docker login
|
|
||||||
if: ${{ inputs.push }}
|
|
||||||
uses: docker/login-action@v3
|
|
||||||
with:
|
|
||||||
username: meshtastic
|
|
||||||
password: ${{ secrets.DOCKER_FIRMWARE_TOKEN }}
|
|
||||||
|
|
||||||
- name: Set up QEMU
|
|
||||||
uses: docker/setup-qemu-action@v3
|
|
||||||
|
|
||||||
- name: Docker setup
|
|
||||||
uses: docker/setup-buildx-action@v3
|
|
||||||
|
|
||||||
- name: Sanitize platform string
|
|
||||||
id: sanitize_platform
|
|
||||||
# Replace slashes with underscores
|
|
||||||
run: echo "cleaned_platform=${{ inputs.platform }}" | sed 's/\//_/g' >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Docker tag
|
|
||||||
id: meta
|
|
||||||
uses: docker/metadata-action@v5
|
|
||||||
with:
|
|
||||||
images: meshtastic/meshtasticd
|
|
||||||
tags: |
|
|
||||||
GHA-${{ steps.version.outputs.long }}-${{ inputs.distro }}-${{ steps.sanitize_platform.outputs.cleaned_platform }}
|
|
||||||
flavor: latest=false
|
|
||||||
|
|
||||||
- name: Docker build and push
|
|
||||||
uses: docker/build-push-action@v6
|
|
||||||
id: docker_variant
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: |
|
|
||||||
${{ contains(inputs.distro, 'debian') && './Dockerfile' || contains(inputs.distro, 'alpine') && './alpine.Dockerfile' }}
|
|
||||||
push: ${{ inputs.push }}
|
|
||||||
tags: ${{ steps.meta.outputs.tags }} # Tag is only meant to be consumed by the "manifest" job
|
|
||||||
platforms: ${{ inputs.platform }}
|
|
||||||
186
.github/workflows/docker_manifest.yml
vendored
186
.github/workflows/docker_manifest.yml
vendored
@@ -1,186 +0,0 @@
|
|||||||
name: Build Docker Multi-Arch Manifest
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_call:
|
|
||||||
secrets:
|
|
||||||
DOCKER_FIRMWARE_TOKEN:
|
|
||||||
required: true
|
|
||||||
inputs:
|
|
||||||
release_channel:
|
|
||||||
description: Release channel to target
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
packages: write
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
docker-debian-amd64:
|
|
||||||
uses: ./.github/workflows/docker_build.yml
|
|
||||||
with:
|
|
||||||
distro: debian
|
|
||||||
platform: linux/amd64
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
push: true
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
docker-debian-arm64:
|
|
||||||
uses: ./.github/workflows/docker_build.yml
|
|
||||||
with:
|
|
||||||
distro: debian
|
|
||||||
platform: linux/arm64
|
|
||||||
runs-on: ubuntu-24.04-arm
|
|
||||||
push: true
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
docker-debian-armv7:
|
|
||||||
uses: ./.github/workflows/docker_build.yml
|
|
||||||
with:
|
|
||||||
distro: debian
|
|
||||||
platform: linux/arm/v7
|
|
||||||
runs-on: ubuntu-24.04-arm
|
|
||||||
push: true
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
docker-alpine-amd64:
|
|
||||||
uses: ./.github/workflows/docker_build.yml
|
|
||||||
with:
|
|
||||||
distro: alpine
|
|
||||||
platform: linux/amd64
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
push: true
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
docker-alpine-arm64:
|
|
||||||
uses: ./.github/workflows/docker_build.yml
|
|
||||||
with:
|
|
||||||
distro: alpine
|
|
||||||
platform: linux/arm64
|
|
||||||
runs-on: ubuntu-24.04-arm
|
|
||||||
push: true
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
docker-alpine-armv7:
|
|
||||||
uses: ./.github/workflows/docker_build.yml
|
|
||||||
with:
|
|
||||||
distro: alpine
|
|
||||||
platform: linux/arm/v7
|
|
||||||
runs-on: ubuntu-24.04-arm
|
|
||||||
push: true
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
docker-manifest:
|
|
||||||
needs:
|
|
||||||
# Debian
|
|
||||||
- docker-debian-amd64
|
|
||||||
- docker-debian-arm64
|
|
||||||
- docker-debian-armv7
|
|
||||||
# Alpine
|
|
||||||
- docker-alpine-amd64
|
|
||||||
- docker-alpine-arm64
|
|
||||||
- docker-alpine-armv7
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
ref: ${{github.event.pull_request.head.ref}}
|
|
||||||
repository: ${{github.event.pull_request.head.repo.full_name}}
|
|
||||||
|
|
||||||
- name: Get release version string
|
|
||||||
run: |
|
|
||||||
echo "long=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
|
||||||
echo "short=$(./bin/buildinfo.py short)" >> $GITHUB_OUTPUT
|
|
||||||
id: version
|
|
||||||
|
|
||||||
- name: Enumerate tags
|
|
||||||
shell: python
|
|
||||||
run: |
|
|
||||||
import os
|
|
||||||
|
|
||||||
short = "${{ steps.version.outputs.short }}"
|
|
||||||
long = "${{ steps.version.outputs.long }}"
|
|
||||||
release_channel = "${{ inputs.release_channel }}"
|
|
||||||
tags = {
|
|
||||||
"beta": {
|
|
||||||
"debian": [
|
|
||||||
f"{short}", f"{long}", f"{short}-beta", f"{long}-beta", "beta", "latest",
|
|
||||||
f"{short}-debian", f"{long}-debian", f"{short}-beta-debian", f"{long}-beta-debian", "beta-debian"
|
|
||||||
],
|
|
||||||
"alpine": [
|
|
||||||
f"{short}-alpine", f"{long}-alpine", f"{short}-beta-alpine", f"{long}-beta-alpine", "beta-alpine"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"alpha": {
|
|
||||||
"debian": [
|
|
||||||
f"{short}-alpha", f"{long}-alpha", "alpha",
|
|
||||||
f"{short}-alpha-debian", f"{long}-alpha-debian", "alpha-debian"
|
|
||||||
],
|
|
||||||
"alpine": [
|
|
||||||
f"{short}-alpha-alpine", f"{long}-alpha-alpine", "alpha-alpine"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"daily": {
|
|
||||||
"debian": ["daily", "daily-debian"],
|
|
||||||
"alpine": ["daily-alpine"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
with open(os.environ["GITHUB_OUTPUT"], "a") as fh:
|
|
||||||
fh.write("debian<<EOF\n")
|
|
||||||
fh.write("\n".join(tags[release_channel]["debian"]))
|
|
||||||
fh.write("\nEOF\n")
|
|
||||||
|
|
||||||
fh.write("alpine<<EOF\n")
|
|
||||||
fh.write("\n".join(tags[release_channel]["alpine"]))
|
|
||||||
fh.write("\nEOF\n")
|
|
||||||
id: tags
|
|
||||||
|
|
||||||
- name: Docker login
|
|
||||||
uses: docker/login-action@v3
|
|
||||||
with:
|
|
||||||
username: meshtastic
|
|
||||||
password: ${{ secrets.DOCKER_FIRMWARE_TOKEN }}
|
|
||||||
|
|
||||||
- name: Docker meta (Debian)
|
|
||||||
id: meta_debian
|
|
||||||
uses: docker/metadata-action@v5
|
|
||||||
with:
|
|
||||||
images: meshtastic/meshtasticd
|
|
||||||
tags: |
|
|
||||||
${{ steps.tags.outputs.debian }}
|
|
||||||
flavor: latest=false
|
|
||||||
|
|
||||||
- name: Create Docker manifest (Debian)
|
|
||||||
id: manifest_debian
|
|
||||||
uses: int128/docker-manifest-create-action@v2
|
|
||||||
with:
|
|
||||||
tags: |
|
|
||||||
${{ steps.meta_debian.outputs.tags }}
|
|
||||||
push: true
|
|
||||||
sources: |
|
|
||||||
meshtastic/meshtasticd@${{ needs.docker-debian-amd64.outputs.digest }}
|
|
||||||
meshtastic/meshtasticd@${{ needs.docker-debian-arm64.outputs.digest }}
|
|
||||||
meshtastic/meshtasticd@${{ needs.docker-debian-armv7.outputs.digest }}
|
|
||||||
|
|
||||||
- name: Docker meta (Alpine)
|
|
||||||
id: meta_alpine
|
|
||||||
uses: docker/metadata-action@v5
|
|
||||||
with:
|
|
||||||
images: meshtastic/meshtasticd
|
|
||||||
tags: |
|
|
||||||
${{ steps.tags.outputs.alpine }}
|
|
||||||
|
|
||||||
- name: Create Docker manifest (Alpine)
|
|
||||||
id: manifest_alpine
|
|
||||||
uses: int128/docker-manifest-create-action@v2
|
|
||||||
with:
|
|
||||||
tags: |
|
|
||||||
${{ steps.meta_alpine.outputs.tags }}
|
|
||||||
push: true
|
|
||||||
sources: |
|
|
||||||
meshtastic/meshtasticd@${{ needs.docker-alpine-amd64.outputs.digest }}
|
|
||||||
meshtastic/meshtasticd@${{ needs.docker-alpine-arm64.outputs.digest }}
|
|
||||||
meshtastic/meshtasticd@${{ needs.docker-alpine-armv7.outputs.digest }}
|
|
||||||
38
.github/workflows/hook_copr.yml
vendored
38
.github/workflows/hook_copr.yml
vendored
@@ -1,38 +0,0 @@
|
|||||||
name: Trigger COPR build
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_call:
|
|
||||||
secrets:
|
|
||||||
COPR_API_CONFIG:
|
|
||||||
inputs:
|
|
||||||
copr_project:
|
|
||||||
description: COPR project to target
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
packages: write
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-copr-hook:
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
ref: ${{ github.ref }}
|
|
||||||
repository: ${{ github.repository }}
|
|
||||||
|
|
||||||
- name: Trigger COPR build
|
|
||||||
uses: vidplace7/copr-build@main
|
|
||||||
id: copr_build
|
|
||||||
env:
|
|
||||||
COPR_API_TOKEN_CONFIG: ${{ secrets.COPR_API_CONFIG }}
|
|
||||||
with:
|
|
||||||
owner: "@meshtastic"
|
|
||||||
package-name: meshtasticd
|
|
||||||
project-name: ${{ inputs.copr_project }}
|
|
||||||
git-remote: "${{ github.server_url }}/${{ github.repository }}.git"
|
|
||||||
committish: ${{ github.sha }}
|
|
||||||
165
.github/workflows/main_matrix.yml
vendored
165
.github/workflows/main_matrix.yml
vendored
@@ -37,7 +37,7 @@ jobs:
|
|||||||
else
|
else
|
||||||
TARGETS=$(./bin/generate_ci_matrix.py ${{matrix.arch}} quick)
|
TARGETS=$(./bin/generate_ci_matrix.py ${{matrix.arch}} quick)
|
||||||
fi
|
fi
|
||||||
echo "Name: ${{ github.ref_name }} Base: ${{ github.base_ref }} } Ref: ${{ github.ref }} Targets: $TARGETS"
|
echo "Name: ${{ github.ref_name }} Base: ${{ github.base_ref }} Head: ${{ github.head_ref }} Ref: ${{ github.ref }} Targets: $TARGETS"
|
||||||
echo "${{matrix.arch}}=$(jq -cn --argjson environments "$TARGETS" '{board: $environments}')" >> $GITHUB_OUTPUT
|
echo "${{matrix.arch}}=$(jq -cn --argjson environments "$TARGETS" '{board: $environments}')" >> $GITHUB_OUTPUT
|
||||||
outputs:
|
outputs:
|
||||||
esp32: ${{ steps.jsonStep.outputs.esp32 }}
|
esp32: ${{ steps.jsonStep.outputs.esp32 }}
|
||||||
@@ -128,47 +128,14 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
board: ${{ matrix.board }}
|
board: ${{ matrix.board }}
|
||||||
|
|
||||||
build-debian-src:
|
package-raspbian:
|
||||||
uses: ./.github/workflows/build_debian_src.yml
|
uses: ./.github/workflows/package_raspbian.yml
|
||||||
with:
|
|
||||||
series: UNRELEASED
|
|
||||||
build_location: local
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
test-native:
|
package-raspbian-armv7l:
|
||||||
uses: ./.github/workflows/test_native.yml
|
uses: ./.github/workflows/package_raspbian_armv7l.yml
|
||||||
|
|
||||||
docker-debian-amd64:
|
package-native:
|
||||||
uses: ./.github/workflows/docker_build.yml
|
uses: ./.github/workflows/package_amd64.yml
|
||||||
with:
|
|
||||||
distro: debian
|
|
||||||
platform: linux/amd64
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
push: false
|
|
||||||
|
|
||||||
docker-alpine-amd64:
|
|
||||||
uses: ./.github/workflows/docker_build.yml
|
|
||||||
with:
|
|
||||||
distro: alpine
|
|
||||||
platform: linux/amd64
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
push: false
|
|
||||||
|
|
||||||
docker-debian-arm64:
|
|
||||||
uses: ./.github/workflows/docker_build.yml
|
|
||||||
with:
|
|
||||||
distro: debian
|
|
||||||
platform: linux/arm64
|
|
||||||
runs-on: ubuntu-24.04-arm
|
|
||||||
push: false
|
|
||||||
|
|
||||||
docker-debian-armv7:
|
|
||||||
uses: ./.github/workflows/docker_build.yml
|
|
||||||
with:
|
|
||||||
distro: debian
|
|
||||||
platform: linux/arm/v7
|
|
||||||
runs-on: ubuntu-24.04-arm
|
|
||||||
push: false
|
|
||||||
|
|
||||||
after-checks:
|
after-checks:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -217,7 +184,7 @@ jobs:
|
|||||||
run: ls -R
|
run: ls -R
|
||||||
|
|
||||||
- name: Get release version string
|
- name: Get release version string
|
||||||
run: echo "long=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
run: echo "version=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
||||||
id: version
|
id: version
|
||||||
|
|
||||||
- name: Move files up
|
- name: Move files up
|
||||||
@@ -226,7 +193,7 @@ jobs:
|
|||||||
- name: Repackage in single firmware zip
|
- name: Repackage in single firmware zip
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: firmware-${{matrix.arch}}-${{ steps.version.outputs.long }}
|
name: firmware-${{matrix.arch}}-${{ steps.version.outputs.version }}
|
||||||
overwrite: true
|
overwrite: true
|
||||||
path: |
|
path: |
|
||||||
./firmware-*.bin
|
./firmware-*.bin
|
||||||
@@ -243,7 +210,7 @@ jobs:
|
|||||||
|
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: firmware-${{matrix.arch}}-${{ steps.version.outputs.long }}
|
name: firmware-${{matrix.arch}}-${{ steps.version.outputs.version }}
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
path: ./output
|
path: ./output
|
||||||
|
|
||||||
@@ -257,12 +224,12 @@ jobs:
|
|||||||
chmod +x ./output/device-update.sh
|
chmod +x ./output/device-update.sh
|
||||||
|
|
||||||
- name: Zip firmware
|
- name: Zip firmware
|
||||||
run: zip -j -9 -r ./firmware-${{matrix.arch}}-${{ steps.version.outputs.long }}.zip ./output
|
run: zip -j -9 -r ./firmware-${{matrix.arch}}-${{ steps.version.outputs.version }}.zip ./output
|
||||||
|
|
||||||
- name: Repackage in single elfs zip
|
- name: Repackage in single elfs zip
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: debug-elfs-${{matrix.arch}}-${{ steps.version.outputs.long }}.zip
|
name: debug-elfs-${{matrix.arch}}-${{ steps.version.outputs.version }}.zip
|
||||||
overwrite: true
|
overwrite: true
|
||||||
path: ./*.elf
|
path: ./*.elf
|
||||||
retention-days: 30
|
retention-days: 30
|
||||||
@@ -270,8 +237,8 @@ jobs:
|
|||||||
- uses: scruplelesswizard/comment-artifact@main
|
- uses: scruplelesswizard/comment-artifact@main
|
||||||
if: ${{ github.event_name == 'pull_request' }}
|
if: ${{ github.event_name == 'pull_request' }}
|
||||||
with:
|
with:
|
||||||
name: firmware-${{matrix.arch}}-${{ steps.version.outputs.long }}
|
name: firmware-${{matrix.arch}}-${{ steps.version.outputs.version }}
|
||||||
description: "Download firmware-${{matrix.arch}}-${{ steps.version.outputs.long }}.zip. This artifact will be available for 90 days from creation"
|
description: "Download firmware-${{matrix.arch}}-${{ steps.version.outputs.version }}.zip. This artifact will be available for 90 days from creation"
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
release-artifacts:
|
release-artifacts:
|
||||||
@@ -279,7 +246,13 @@ jobs:
|
|||||||
if: ${{ github.event_name == 'workflow_dispatch' }}
|
if: ${{ github.event_name == 'workflow_dispatch' }}
|
||||||
outputs:
|
outputs:
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
needs: [gather-artifacts, build-debian-src]
|
needs:
|
||||||
|
[
|
||||||
|
gather-artifacts,
|
||||||
|
package-raspbian,
|
||||||
|
package-raspbian-armv7l,
|
||||||
|
package-native,
|
||||||
|
]
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@@ -290,60 +263,73 @@ jobs:
|
|||||||
python-version: 3.x
|
python-version: 3.x
|
||||||
|
|
||||||
- name: Get release version string
|
- name: Get release version string
|
||||||
run: |
|
run: echo "version=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
||||||
echo "long=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
|
||||||
echo "deb=$(./bin/buildinfo.py deb)" >> $GITHUB_OUTPUT
|
|
||||||
id: version
|
id: version
|
||||||
env:
|
|
||||||
BUILD_LOCATION: local
|
|
||||||
|
|
||||||
- name: Create release
|
- name: Create release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: actions/create-release@v1
|
||||||
id: create_release
|
id: create_release
|
||||||
with:
|
with:
|
||||||
draft: true
|
draft: true
|
||||||
prerelease: true
|
prerelease: true
|
||||||
name: Meshtastic Firmware ${{ steps.version.outputs.long }} Alpha
|
release_name: Meshtastic Firmware ${{ steps.version.outputs.version }} Alpha
|
||||||
tag_name: v${{ steps.version.outputs.long }}
|
tag_name: v${{ steps.version.outputs.version }}
|
||||||
body: |
|
body: |
|
||||||
Autogenerated by github action, developer should edit as required before publishing...
|
Autogenerated by github action, developer should edit as required before publishing...
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
|
|
||||||
- name: Download source deb
|
- name: Download deb files
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
pattern: firmware-debian-${{ steps.version.outputs.deb }}~UNRELEASED-src
|
pattern: meshtasticd_${{ steps.version.outputs.version }}_*.deb
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
path: ./output/debian-src
|
path: ./output
|
||||||
|
|
||||||
- name: Zip source deb
|
|
||||||
working-directory: output
|
|
||||||
run: zip -j -9 -r ./meshtasticd-${{ steps.version.outputs.deb }}-src.zip ./debian-src
|
|
||||||
|
|
||||||
# For diagnostics
|
# For diagnostics
|
||||||
- name: Display structure of downloaded files
|
- name: Display structure of downloaded files
|
||||||
run: ls -lR
|
run: ls -lR
|
||||||
|
|
||||||
- name: Add source deb to release
|
- name: Add raspbian aarch64 .deb
|
||||||
run: |
|
uses: actions/upload-release-asset@v1
|
||||||
gh release upload v${{ steps.version.outputs.long }} ./output/meshtasticd-${{ steps.version.outputs.deb }}-src.zip
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_path: ./output/meshtasticd_${{ steps.version.outputs.version }}_arm64.deb
|
||||||
|
asset_name: meshtasticd_${{ steps.version.outputs.version }}_arm64.deb
|
||||||
|
asset_content_type: application/vnd.debian.binary-package
|
||||||
|
|
||||||
|
- name: Add raspbian armv7l .deb
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_path: ./output/meshtasticd_${{ steps.version.outputs.version }}_armhf.deb
|
||||||
|
asset_name: meshtasticd_${{ steps.version.outputs.version }}_armhf.deb
|
||||||
|
asset_content_type: application/vnd.debian.binary-package
|
||||||
|
|
||||||
|
- name: Add raspbian amd64 .deb
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_path: ./output/meshtasticd_${{ steps.version.outputs.version }}_amd64.deb
|
||||||
|
asset_name: meshtasticd_${{ steps.version.outputs.version }}_amd64.deb
|
||||||
|
asset_content_type: application/vnd.debian.binary-package
|
||||||
|
|
||||||
- name: Bump version.properties
|
- name: Bump version.properties
|
||||||
run: >-
|
run: >-
|
||||||
bin/bump_version.py
|
bin/bump_version.py
|
||||||
|
|
||||||
- name: Update debian changelog
|
|
||||||
run: >-
|
|
||||||
debian/ci_changelog.sh
|
|
||||||
|
|
||||||
- name: Create version.properties pull request
|
- name: Create version.properties pull request
|
||||||
uses: peter-evans/create-pull-request@v7
|
uses: peter-evans/create-pull-request@v7
|
||||||
with:
|
with:
|
||||||
title: Bump version.properties
|
title: Bump version.properties
|
||||||
add-paths: |
|
add-paths: |
|
||||||
version.properties
|
version.properties
|
||||||
debian/changelog
|
|
||||||
|
|
||||||
release-firmware:
|
release-firmware:
|
||||||
strategy:
|
strategy:
|
||||||
@@ -363,12 +349,12 @@ jobs:
|
|||||||
python-version: 3.x
|
python-version: 3.x
|
||||||
|
|
||||||
- name: Get release version string
|
- name: Get release version string
|
||||||
run: echo "long=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
run: echo "version=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
||||||
id: version
|
id: version
|
||||||
|
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
pattern: firmware-${{matrix.arch}}-${{ steps.version.outputs.long }}
|
pattern: firmware-${{matrix.arch}}-${{ steps.version.outputs.version }}
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
path: ./output
|
path: ./output
|
||||||
|
|
||||||
@@ -381,24 +367,37 @@ jobs:
|
|||||||
chmod +x ./output/device-update.sh
|
chmod +x ./output/device-update.sh
|
||||||
|
|
||||||
- name: Zip firmware
|
- name: Zip firmware
|
||||||
run: zip -j -9 -r ./firmware-${{matrix.arch}}-${{ steps.version.outputs.long }}.zip ./output
|
run: zip -j -9 -r ./firmware-${{matrix.arch}}-${{ steps.version.outputs.version }}.zip ./output
|
||||||
|
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: debug-elfs-${{matrix.arch}}-${{ steps.version.outputs.long }}.zip
|
name: debug-elfs-${{matrix.arch}}-${{ steps.version.outputs.version }}.zip
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
path: ./elfs
|
path: ./elfs
|
||||||
|
|
||||||
- name: Zip debug elfs
|
- name: Zip firmware
|
||||||
run: zip -j -9 -r ./debug-elfs-${{matrix.arch}}-${{ steps.version.outputs.long }}.zip ./elfs
|
run: zip -j -9 -r ./debug-elfs-${{matrix.arch}}-${{ steps.version.outputs.version }}.zip ./elfs
|
||||||
|
|
||||||
# For diagnostics
|
# For diagnostics
|
||||||
- name: Display structure of downloaded files
|
- name: Display structure of downloaded files
|
||||||
run: ls -lR
|
run: ls -lR
|
||||||
|
|
||||||
- name: Add bins and debug elfs to release
|
- name: Add bins to release
|
||||||
run: |
|
uses: actions/upload-release-asset@v1
|
||||||
gh release upload v${{ steps.version.outputs.long }} ./firmware-${{matrix.arch}}-${{ steps.version.outputs.long }}.zip
|
|
||||||
gh release upload v${{ steps.version.outputs.long }} ./debug-elfs-${{matrix.arch}}-${{ steps.version.outputs.long }}.zip
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{needs.release-artifacts.outputs.upload_url}}
|
||||||
|
asset_path: ./firmware-${{matrix.arch}}-${{ steps.version.outputs.version }}.zip
|
||||||
|
asset_name: firmware-${{matrix.arch}}-${{ steps.version.outputs.version }}.zip
|
||||||
|
asset_content_type: application/zip
|
||||||
|
|
||||||
|
- name: Add debug elfs to release
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{needs.release-artifacts.outputs.upload_url}}
|
||||||
|
asset_path: ./debug-elfs-${{matrix.arch}}-${{ steps.version.outputs.version }}.zip
|
||||||
|
asset_name: debug-elfs-${{matrix.arch}}-${{ steps.version.outputs.version }}.zip
|
||||||
|
asset_content_type: application/zip
|
||||||
|
|||||||
85
.github/workflows/package_amd64.yml
vendored
Normal file
85
.github/workflows/package_amd64.yml
vendored
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
name: Package Native
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
packages: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-native:
|
||||||
|
uses: ./.github/workflows/build_native.yml
|
||||||
|
|
||||||
|
package-native:
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
needs: build-native
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
ref: ${{github.event.pull_request.head.ref}}
|
||||||
|
repository: ${{github.event.pull_request.head.repo.full_name}}
|
||||||
|
|
||||||
|
- name: Pull web ui
|
||||||
|
uses: dsaltares/fetch-gh-release-asset@master
|
||||||
|
with:
|
||||||
|
repo: meshtastic/web
|
||||||
|
file: build.tar
|
||||||
|
target: build.tar
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Get release version string
|
||||||
|
run: echo "version=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
||||||
|
id: version
|
||||||
|
|
||||||
|
- name: Download artifacts
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: firmware-native-${{ steps.version.outputs.version }}.zip
|
||||||
|
merge-multiple: true
|
||||||
|
|
||||||
|
- name: Display structure of downloaded files
|
||||||
|
run: ls -R
|
||||||
|
|
||||||
|
- name: build .debpkg
|
||||||
|
run: |
|
||||||
|
mkdir -p .debpkg/DEBIAN
|
||||||
|
mkdir -p .debpkg/usr/share/doc/meshtasticd/web
|
||||||
|
mkdir -p .debpkg/usr/sbin
|
||||||
|
mkdir -p .debpkg/etc/meshtasticd
|
||||||
|
mkdir -p .debpkg/etc/meshtasticd/config.d
|
||||||
|
mkdir -p .debpkg/etc/meshtasticd/available.d
|
||||||
|
mkdir -p .debpkg/usr/lib/systemd/system/
|
||||||
|
tar -xf build.tar -C .debpkg/usr/share/doc/meshtasticd/web
|
||||||
|
shopt -s dotglob nullglob
|
||||||
|
if [ -d .debpkg/usr/share/doc/meshtasticd/web/build ]; then mv .debpkg/usr/share/doc/meshtasticd/web/build/* .debpkg/usr/share/doc/meshtasticd/web/; fi
|
||||||
|
if [ -d .debpkg/usr/share/doc/meshtasticd/web/build ]; then rmdir .debpkg/usr/share/doc/meshtasticd/web/build; fi
|
||||||
|
if [ -d .debpkg/usr/share/doc/meshtasticd/web/.DS_Store]; then rm -f .debpkg/usr/share/doc/meshtasticd/web/.DS_Store; fi
|
||||||
|
gunzip .debpkg/usr/share/doc/meshtasticd/web/*.gz
|
||||||
|
cp release/meshtasticd_linux_x86_64 .debpkg/usr/sbin/meshtasticd
|
||||||
|
cp bin/config-dist.yaml .debpkg/etc/meshtasticd/config.yaml
|
||||||
|
cp bin/config.d/* .debpkg/etc/meshtasticd/available.d/
|
||||||
|
chmod +x .debpkg/usr/sbin/meshtasticd
|
||||||
|
cp bin/meshtasticd.service .debpkg/usr/lib/systemd/system/meshtasticd.service
|
||||||
|
echo "/etc/meshtasticd/config.yaml" > .debpkg/DEBIAN/conffiles
|
||||||
|
chmod +x .debpkg/DEBIAN/conffiles
|
||||||
|
|
||||||
|
- uses: jiro4989/build-deb-action@v3
|
||||||
|
with:
|
||||||
|
package: meshtasticd
|
||||||
|
package_root: .debpkg
|
||||||
|
maintainer: Jonathan Bennett
|
||||||
|
version: ${{ steps.version.outputs.version }} # refs/tags/v*.*.*
|
||||||
|
arch: amd64
|
||||||
|
depends: libyaml-cpp0.7, openssl, libulfius2.7
|
||||||
|
desc: Native Linux Meshtastic binary.
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: meshtasticd_${{ steps.version.outputs.version }}_amd64.deb
|
||||||
|
overwrite: true
|
||||||
|
path: |
|
||||||
|
./*.deb
|
||||||
110
.github/workflows/package_obs.yml
vendored
110
.github/workflows/package_obs.yml
vendored
@@ -1,110 +0,0 @@
|
|||||||
name: Package for OpenSUSE Build Service
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_call:
|
|
||||||
secrets:
|
|
||||||
OBS_PASSWORD:
|
|
||||||
required: true
|
|
||||||
PPA_GPG_PRIVATE_KEY:
|
|
||||||
required: true
|
|
||||||
inputs:
|
|
||||||
obs_project:
|
|
||||||
description: Meshtastic OBS project to target
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
series:
|
|
||||||
description: Debian series to target
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
packages: write
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-debian-src:
|
|
||||||
uses: ./.github/workflows/build_debian_src.yml
|
|
||||||
secrets: inherit
|
|
||||||
with:
|
|
||||||
series: ${{ inputs.series }}
|
|
||||||
build_location: obs
|
|
||||||
|
|
||||||
package-obs:
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
needs: build-debian-src
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
path: meshtasticd
|
|
||||||
ref: ${{github.event.pull_request.head.ref}}
|
|
||||||
repository: ${{github.event.pull_request.head.repo.full_name}}
|
|
||||||
|
|
||||||
- name: Install OpenSUSE Build Service deps
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo 'deb http://download.opensuse.org/repositories/openSUSE:/Tools/xUbuntu_24.04/ /' | sudo tee /etc/apt/sources.list.d/openSUSE:Tools.list
|
|
||||||
curl -fsSL https://download.opensuse.org/repositories/openSUSE:Tools/xUbuntu_24.04/Release.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/openSUSE_Tools.gpg > /dev/null
|
|
||||||
sudo apt-get update -y --fix-missing
|
|
||||||
sudo apt-get install -y osc
|
|
||||||
|
|
||||||
- name: Get release version string
|
|
||||||
working-directory: meshtasticd
|
|
||||||
run: |
|
|
||||||
echo "deb=$(./bin/buildinfo.py deb)" >> $GITHUB_OUTPUT
|
|
||||||
env:
|
|
||||||
BUILD_LOCATION: obs
|
|
||||||
id: version
|
|
||||||
|
|
||||||
- name: Download artifacts
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
name: firmware-debian-${{ steps.version.outputs.deb }}~${{ inputs.series }}-src
|
|
||||||
merge-multiple: true
|
|
||||||
|
|
||||||
- name: Display structure of downloaded files
|
|
||||||
run: ls -lah
|
|
||||||
|
|
||||||
- name: Configure osc
|
|
||||||
env:
|
|
||||||
OBS_USERNAME: meshtastic
|
|
||||||
run: |
|
|
||||||
# Setup OpenSUSE Build Service credentials
|
|
||||||
mkdir -p ~/.config/osc
|
|
||||||
echo "[general]" > ~/.config/osc/oscrc
|
|
||||||
echo "apiurl=https://api.opensuse.org" >> ~/.config/osc/oscrc
|
|
||||||
echo "[https://api.opensuse.org]" >> ~/.config/osc/oscrc
|
|
||||||
echo "user=${{ env.OBS_USERNAME }}" >> ~/.config/osc/oscrc
|
|
||||||
echo "pass=${{ secrets.OBS_PASSWORD }}" >> ~/.config/osc/oscrc
|
|
||||||
echo "credentials_mgr_class=osc.credentials.PlaintextConfigFileCredentialsManager" >> ~/.config/osc/oscrc
|
|
||||||
# Create a temporary directory for osc checkout
|
|
||||||
mkdir -p osc
|
|
||||||
|
|
||||||
# Intentionally fail if credentials are invalid
|
|
||||||
# Update secrets if this returns `401`
|
|
||||||
- name: Verify OBS authentication
|
|
||||||
run: osc token
|
|
||||||
|
|
||||||
- name: Upload package to OBS
|
|
||||||
shell: bash
|
|
||||||
working-directory: osc
|
|
||||||
env:
|
|
||||||
OBS_PROJECT: ${{ inputs.obs_project }}
|
|
||||||
OBS_PACKAGE: meshtasticd
|
|
||||||
run: |
|
|
||||||
# Initialize the package in the current directory
|
|
||||||
osc checkout --output-dir . $OBS_PROJECT $OBS_PACKAGE
|
|
||||||
|
|
||||||
# Remove the existing package files
|
|
||||||
rm -rf *.dsc *.tar.xz
|
|
||||||
|
|
||||||
# Copy new package files to the directory
|
|
||||||
cp $GITHUB_WORKSPACE/*.dsc .
|
|
||||||
cp $GITHUB_WORKSPACE/*.tar.xz .
|
|
||||||
|
|
||||||
# Add/Remove the files
|
|
||||||
osc addremove
|
|
||||||
|
|
||||||
# Commit changes and push to OpenSUSE Build Service
|
|
||||||
osc commit -m "GitHub Actions: ${{ steps.version.outputs.deb }}~${{ inputs.series }}"
|
|
||||||
74
.github/workflows/package_ppa.yml
vendored
74
.github/workflows/package_ppa.yml
vendored
@@ -1,74 +0,0 @@
|
|||||||
name: Package for Launchpad PPA
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_call:
|
|
||||||
secrets:
|
|
||||||
PPA_GPG_PRIVATE_KEY:
|
|
||||||
required: true
|
|
||||||
inputs:
|
|
||||||
ppa_repo:
|
|
||||||
description: Meshtastic PPA to target
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
series:
|
|
||||||
description: Ubuntu series to target
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
packages: write
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-debian-src:
|
|
||||||
uses: ./.github/workflows/build_debian_src.yml
|
|
||||||
secrets: inherit
|
|
||||||
with:
|
|
||||||
series: ${{ inputs.series }}
|
|
||||||
build_location: ppa
|
|
||||||
|
|
||||||
package-ppa:
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
needs: build-debian-src
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
path: meshtasticd
|
|
||||||
ref: ${{github.event.pull_request.head.ref}}
|
|
||||||
repository: ${{github.event.pull_request.head.repo.full_name}}
|
|
||||||
|
|
||||||
- name: Install deps
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
sudo apt-get update -y --fix-missing
|
|
||||||
sudo apt-get install -y dput
|
|
||||||
|
|
||||||
- name: Import GPG key
|
|
||||||
uses: crazy-max/ghaction-import-gpg@v6
|
|
||||||
with:
|
|
||||||
gpg_private_key: ${{ secrets.PPA_GPG_PRIVATE_KEY }}
|
|
||||||
id: gpg
|
|
||||||
|
|
||||||
- name: Get release version string
|
|
||||||
working-directory: meshtasticd
|
|
||||||
run: |
|
|
||||||
echo "deb=$(./bin/buildinfo.py deb)" >> $GITHUB_OUTPUT
|
|
||||||
env:
|
|
||||||
BUILD_LOCATION: ppa
|
|
||||||
id: version
|
|
||||||
|
|
||||||
- name: Download artifacts
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
name: firmware-debian-${{ steps.version.outputs.deb }}~${{ inputs.series }}-src
|
|
||||||
merge-multiple: true
|
|
||||||
|
|
||||||
- name: Display structure of downloaded files
|
|
||||||
run: ls -lah
|
|
||||||
|
|
||||||
- name: Publish with dput
|
|
||||||
if: ${{ github.event_name != 'pull_request_target' && github.event_name != 'pull_request' }}
|
|
||||||
run: |
|
|
||||||
dput ${{ inputs.ppa_repo }} meshtasticd_${{ steps.version.outputs.deb }}~${{ inputs.series }}_source.changes
|
|
||||||
85
.github/workflows/package_raspbian.yml
vendored
Normal file
85
.github/workflows/package_raspbian.yml
vendored
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
name: Package Raspbian
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
packages: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-raspbian:
|
||||||
|
uses: ./.github/workflows/build_raspbian.yml
|
||||||
|
|
||||||
|
package-raspbian:
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
needs: build-raspbian
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
ref: ${{github.event.pull_request.head.ref}}
|
||||||
|
repository: ${{github.event.pull_request.head.repo.full_name}}
|
||||||
|
|
||||||
|
- name: Pull web ui
|
||||||
|
uses: dsaltares/fetch-gh-release-asset@master
|
||||||
|
with:
|
||||||
|
repo: meshtastic/web
|
||||||
|
file: build.tar
|
||||||
|
target: build.tar
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Get release version string
|
||||||
|
run: echo "version=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
||||||
|
id: version
|
||||||
|
|
||||||
|
- name: Download artifacts
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: firmware-raspbian-${{ steps.version.outputs.version }}.zip
|
||||||
|
merge-multiple: true
|
||||||
|
|
||||||
|
- name: Display structure of downloaded files
|
||||||
|
run: ls -R
|
||||||
|
|
||||||
|
- name: build .debpkg
|
||||||
|
run: |
|
||||||
|
mkdir -p .debpkg/DEBIAN
|
||||||
|
mkdir -p .debpkg/usr/share/doc/meshtasticd/web
|
||||||
|
mkdir -p .debpkg/usr/sbin
|
||||||
|
mkdir -p .debpkg/etc/meshtasticd
|
||||||
|
mkdir -p .debpkg/etc/meshtasticd/config.d
|
||||||
|
mkdir -p .debpkg/etc/meshtasticd/available.d
|
||||||
|
mkdir -p .debpkg/usr/lib/systemd/system/
|
||||||
|
tar -xf build.tar -C .debpkg/usr/share/doc/meshtasticd/web
|
||||||
|
shopt -s dotglob nullglob
|
||||||
|
if [ -d .debpkg/usr/share/doc/meshtasticd/web/build ]; then mv .debpkg/usr/share/doc/meshtasticd/web/build/* .debpkg/usr/share/doc/meshtasticd/web/; fi
|
||||||
|
if [ -d .debpkg/usr/share/doc/meshtasticd/web/build ]; then rmdir .debpkg/usr/share/doc/meshtasticd/web/build; fi
|
||||||
|
if [ -d .debpkg/usr/share/doc/meshtasticd/web/.DS_Store]; then rm -f .debpkg/usr/share/doc/meshtasticd/web/.DS_Store; fi
|
||||||
|
gunzip .debpkg/usr/share/doc/meshtasticd/web/*.gz
|
||||||
|
cp release/meshtasticd_linux_aarch64 .debpkg/usr/sbin/meshtasticd
|
||||||
|
cp bin/config-dist.yaml .debpkg/etc/meshtasticd/config.yaml
|
||||||
|
cp bin/config.d/* .debpkg/etc/meshtasticd/available.d/
|
||||||
|
chmod +x .debpkg/usr/sbin/meshtasticd
|
||||||
|
cp bin/meshtasticd.service .debpkg/usr/lib/systemd/system/meshtasticd.service
|
||||||
|
echo "/etc/meshtasticd/config.yaml" > .debpkg/DEBIAN/conffiles
|
||||||
|
chmod +x .debpkg/DEBIAN/conffiles
|
||||||
|
|
||||||
|
- uses: jiro4989/build-deb-action@v3
|
||||||
|
with:
|
||||||
|
package: meshtasticd
|
||||||
|
package_root: .debpkg
|
||||||
|
maintainer: Jonathan Bennett
|
||||||
|
version: ${{ steps.version.outputs.version }} # refs/tags/v*.*.*
|
||||||
|
arch: arm64
|
||||||
|
depends: libyaml-cpp0.7, openssl, libulfius2.7
|
||||||
|
desc: Native Linux Meshtastic binary.
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: meshtasticd_${{ steps.version.outputs.version }}_arm64.deb
|
||||||
|
overwrite: true
|
||||||
|
path: |
|
||||||
|
./*.deb
|
||||||
85
.github/workflows/package_raspbian_armv7l.yml
vendored
Normal file
85
.github/workflows/package_raspbian_armv7l.yml
vendored
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
name: Package Raspbian
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
packages: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-raspbian_armv7l:
|
||||||
|
uses: ./.github/workflows/build_raspbian_armv7l.yml
|
||||||
|
|
||||||
|
package-raspbian_armv7l:
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
needs: build-raspbian_armv7l
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
ref: ${{github.event.pull_request.head.ref}}
|
||||||
|
repository: ${{github.event.pull_request.head.repo.full_name}}
|
||||||
|
|
||||||
|
- name: Pull web ui
|
||||||
|
uses: dsaltares/fetch-gh-release-asset@master
|
||||||
|
with:
|
||||||
|
repo: meshtastic/web
|
||||||
|
file: build.tar
|
||||||
|
target: build.tar
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Get release version string
|
||||||
|
run: echo "version=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
||||||
|
id: version
|
||||||
|
|
||||||
|
- name: Download artifacts
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: firmware-raspbian-armv7l-${{ steps.version.outputs.version }}.zip
|
||||||
|
merge-multiple: true
|
||||||
|
|
||||||
|
- name: Display structure of downloaded files
|
||||||
|
run: ls -R
|
||||||
|
|
||||||
|
- name: build .debpkg
|
||||||
|
run: |
|
||||||
|
mkdir -p .debpkg/DEBIAN
|
||||||
|
mkdir -p .debpkg/usr/share/doc/meshtasticd/web
|
||||||
|
mkdir -p .debpkg/usr/sbin
|
||||||
|
mkdir -p .debpkg/etc/meshtasticd
|
||||||
|
mkdir -p .debpkg/etc/meshtasticd/config.d
|
||||||
|
mkdir -p .debpkg/etc/meshtasticd/available.d
|
||||||
|
mkdir -p .debpkg/usr/lib/systemd/system/
|
||||||
|
tar -xf build.tar -C .debpkg/usr/share/doc/meshtasticd/web
|
||||||
|
shopt -s dotglob nullglob
|
||||||
|
if [ -d .debpkg/usr/share/doc/meshtasticd/web/build ]; then mv .debpkg/usr/share/doc/meshtasticd/web/build/* .debpkg/usr/share/doc/meshtasticd/web/; fi
|
||||||
|
if [ -d .debpkg/usr/share/doc/meshtasticd/web/build ]; then rmdir .debpkg/usr/share/doc/meshtasticd/web/build; fi
|
||||||
|
if [ -d .debpkg/usr/share/doc/meshtasticd/web/.DS_Store]; then rm -f .debpkg/usr/share/doc/meshtasticd/web/.DS_Store; fi
|
||||||
|
gunzip .debpkg/usr/share/doc/meshtasticd/web/*.gz
|
||||||
|
cp release/meshtasticd_linux_armv7l .debpkg/usr/sbin/meshtasticd
|
||||||
|
cp bin/config-dist.yaml .debpkg/etc/meshtasticd/config.yaml
|
||||||
|
cp bin/config.d/* .debpkg/etc/meshtasticd/available.d/
|
||||||
|
chmod +x .debpkg/usr/sbin/meshtasticd
|
||||||
|
cp bin/meshtasticd.service .debpkg/usr/lib/systemd/system/meshtasticd.service
|
||||||
|
echo "/etc/meshtasticd/config.yaml" > .debpkg/DEBIAN/conffiles
|
||||||
|
chmod +x .debpkg/DEBIAN/conffiles
|
||||||
|
|
||||||
|
- uses: jiro4989/build-deb-action@v3
|
||||||
|
with:
|
||||||
|
package: meshtasticd
|
||||||
|
package_root: .debpkg
|
||||||
|
maintainer: Jonathan Bennett
|
||||||
|
version: ${{ steps.version.outputs.version }} # refs/tags/v*.*.*
|
||||||
|
arch: armhf
|
||||||
|
depends: libyaml-cpp0.7, openssl, libulfius2.7
|
||||||
|
desc: Native Linux Meshtastic binary.
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: meshtasticd_${{ steps.version.outputs.version }}_armhf.deb
|
||||||
|
overwrite: true
|
||||||
|
path: |
|
||||||
|
./*.deb
|
||||||
45
.github/workflows/release_channels.yml
vendored
45
.github/workflows/release_channels.yml
vendored
@@ -1,45 +0,0 @@
|
|||||||
name: Trigger release workflows upon Publish
|
|
||||||
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types: [published, released]
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
packages: write
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-docker:
|
|
||||||
uses: ./.github/workflows/docker_manifest.yml
|
|
||||||
with:
|
|
||||||
release_channel: |-
|
|
||||||
${{ contains(github.event.release.name, 'Beta') && 'beta' || contains(github.event.release.name, 'Alpha') && 'alpha' }}
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
package-ppa:
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
series: [plucky, oracular, noble, jammy]
|
|
||||||
uses: ./.github/workflows/package_ppa.yml
|
|
||||||
with:
|
|
||||||
ppa_repo: |-
|
|
||||||
ppa:meshtastic/${{ contains(github.event.release.name, 'Beta') && 'beta' || contains(github.event.release.name, 'Alpha') && 'alpha' }}
|
|
||||||
series: ${{ matrix.series }}
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
package-obs:
|
|
||||||
uses: ./.github/workflows/package_obs.yml
|
|
||||||
with:
|
|
||||||
obs_project: |-
|
|
||||||
network:Meshtastic:${{ contains(github.event.release.name, 'Beta') && 'beta' || contains(github.event.release.name, 'Alpha') && 'alpha' }}
|
|
||||||
series: |-
|
|
||||||
${{ contains(github.event.release.name, 'Beta') && 'beta' || contains(github.event.release.name, 'Alpha') && 'alpha' }}
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
hook-copr:
|
|
||||||
uses: ./.github/workflows/hook_copr.yml
|
|
||||||
with:
|
|
||||||
copr_project: |-
|
|
||||||
${{ contains(github.event.release.name, 'Beta') && 'beta' || contains(github.event.release.name, 'Alpha') && 'alpha' }}
|
|
||||||
secrets: inherit
|
|
||||||
169
.github/workflows/test_native.yml
vendored
169
.github/workflows/test_native.yml
vendored
@@ -1,169 +0,0 @@
|
|||||||
name: Run Tests on Native platform
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_call:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
permissions: {}
|
|
||||||
|
|
||||||
env:
|
|
||||||
LCOV_CAPTURE_FLAGS: --quiet --capture --include "${PWD}/src/*" --exclude '*/src/mesh/generated/*' --directory .pio/build/coverage/src --base-directory "${PWD}"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
simulator-tests:
|
|
||||||
name: Native Simulator Tests
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: ${{github.event.pull_request.head.ref}}
|
|
||||||
repository: ${{github.event.pull_request.head.repo.full_name}}
|
|
||||||
submodules: recursive
|
|
||||||
|
|
||||||
- name: Setup native build
|
|
||||||
id: base
|
|
||||||
uses: ./.github/actions/setup-native
|
|
||||||
|
|
||||||
- name: Install simulator dependencies
|
|
||||||
run: pip install -U dotmap
|
|
||||||
|
|
||||||
# We now run integration test before other build steps (to quickly see runtime failures)
|
|
||||||
- name: Build for native/coverage
|
|
||||||
run: platformio run -e coverage
|
|
||||||
|
|
||||||
- name: Capture initial coverage information
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
sudo apt-get install -y lcov
|
|
||||||
lcov ${{ env.LCOV_CAPTURE_FLAGS }} --initial --output-file coverage_base.info
|
|
||||||
sed -i -e "s#${PWD}#.#" coverage_base.info # Make paths relative.
|
|
||||||
|
|
||||||
- name: Integration test
|
|
||||||
run: |
|
|
||||||
.pio/build/coverage/program &
|
|
||||||
PID=$!
|
|
||||||
timeout 20 bash -c "until ls -al /proc/$PID/fd | grep socket; do sleep 1; done"
|
|
||||||
echo "Simulator started, launching python test..."
|
|
||||||
python3 -c 'from meshtastic.test import testSimulator; testSimulator()'
|
|
||||||
wait
|
|
||||||
|
|
||||||
- name: Capture coverage information
|
|
||||||
if: always() # run this step even if previous step failed
|
|
||||||
run: |
|
|
||||||
lcov ${{ env.LCOV_CAPTURE_FLAGS }} --test-name integration --output-file coverage_integration.info
|
|
||||||
sed -i -e "s#${PWD}#.#" coverage_integration.info # Make paths relative.
|
|
||||||
|
|
||||||
- name: Get release version string
|
|
||||||
if: always() # run this step even if previous step failed
|
|
||||||
run: echo "long=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
|
||||||
id: version
|
|
||||||
|
|
||||||
- name: Save coverage information
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
if: always() # run this step even if previous step failed
|
|
||||||
with:
|
|
||||||
name: lcov-coverage-info-native-simulator-test-${{ steps.version.outputs.long }}.zip
|
|
||||||
overwrite: true
|
|
||||||
path: ./coverage_*.info
|
|
||||||
|
|
||||||
platformio-tests:
|
|
||||||
name: Native PlatformIO Tests
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: ${{github.event.pull_request.head.ref}}
|
|
||||||
repository: ${{github.event.pull_request.head.repo.full_name}}
|
|
||||||
submodules: recursive
|
|
||||||
|
|
||||||
- name: Setup native build
|
|
||||||
id: base
|
|
||||||
uses: ./.github/actions/setup-native
|
|
||||||
|
|
||||||
- name: Get release version string
|
|
||||||
run: echo "long=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
|
||||||
id: version
|
|
||||||
|
|
||||||
# Disable (comment-out) BUILD_EPOCH. It causes a full rebuild between tests and resets the
|
|
||||||
# coverage information each time.
|
|
||||||
- name: Disable BUILD_EPOCH
|
|
||||||
run: sed -i 's/-DBUILD_EPOCH=$UNIX_TIME/#-DBUILD_EPOCH=$UNIX_TIME/' platformio.ini
|
|
||||||
|
|
||||||
- name: PlatformIO Tests
|
|
||||||
run: platformio test -e coverage -v --junit-output-path testreport.xml
|
|
||||||
|
|
||||||
- name: Save test results
|
|
||||||
if: always() # run this step even if previous step failed
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: platformio-test-report-${{ steps.version.outputs.long }}.zip
|
|
||||||
overwrite: true
|
|
||||||
path: ./testreport.xml
|
|
||||||
|
|
||||||
- name: Capture coverage information
|
|
||||||
if: always() # run this step even if previous step failed
|
|
||||||
run: |
|
|
||||||
sudo apt-get install -y lcov
|
|
||||||
lcov ${{ env.LCOV_CAPTURE_FLAGS }} --test-name tests --output-file coverage_tests.info
|
|
||||||
sed -i -e "s#${PWD}#.#" coverage_tests.info # Make paths relative.
|
|
||||||
|
|
||||||
- name: Save coverage information
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
if: always() # run this step even if previous step failed
|
|
||||||
with:
|
|
||||||
name: lcov-coverage-info-native-platformio-tests-${{ steps.version.outputs.long }}.zip
|
|
||||||
overwrite: true
|
|
||||||
path: ./coverage_*.info
|
|
||||||
|
|
||||||
generate-reports:
|
|
||||||
name: Generate Test Reports
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions: # Needed for dorny/test-reporter.
|
|
||||||
contents: read
|
|
||||||
actions: read
|
|
||||||
checks: write
|
|
||||||
needs:
|
|
||||||
- simulator-tests
|
|
||||||
- platformio-tests
|
|
||||||
if: always()
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: ${{github.event.pull_request.head.ref}}
|
|
||||||
repository: ${{github.event.pull_request.head.repo.full_name}}
|
|
||||||
|
|
||||||
- name: Get release version string
|
|
||||||
run: echo "long=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
|
||||||
id: version
|
|
||||||
|
|
||||||
- name: Download test artifacts
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
name: platformio-test-report-${{ steps.version.outputs.long }}.zip
|
|
||||||
merge-multiple: true
|
|
||||||
|
|
||||||
- name: Test Report
|
|
||||||
uses: dorny/test-reporter@v1.9.1
|
|
||||||
with:
|
|
||||||
name: PlatformIO Tests
|
|
||||||
path: testreport.xml
|
|
||||||
reporter: java-junit
|
|
||||||
|
|
||||||
- name: Download coverage artifacts
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
pattern: lcov-coverage-info-native-*-${{ steps.version.outputs.long }}.zip
|
|
||||||
path: code-coverage-report
|
|
||||||
merge-multiple: true
|
|
||||||
|
|
||||||
- name: Generate Code Coverage Report
|
|
||||||
run: |
|
|
||||||
sudo apt-get install -y lcov
|
|
||||||
lcov --quiet --add-tracefile code-coverage-report/coverage_base.info --add-tracefile code-coverage-report/coverage_integration.info --add-tracefile code-coverage-report/coverage_tests.info --output-file code-coverage-report/coverage_src.info
|
|
||||||
genhtml --quiet --legend --prefix "${PWD}" code-coverage-report/coverage_src.info --output-directory code-coverage-report
|
|
||||||
|
|
||||||
- name: Save Code Coverage Report
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: code-coverage-report-${{ steps.version.outputs.long }}.zip
|
|
||||||
path: code-coverage-report
|
|
||||||
51
.github/workflows/tests.yml
vendored
51
.github/workflows/tests.yml
vendored
@@ -6,8 +6,55 @@ on:
|
|||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
native-tests:
|
test-simulator:
|
||||||
uses: ./.github/workflows/test_native.yml
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Install libbluetooth
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
sudo apt-get update --fix-missing
|
||||||
|
sudo apt-get install -y libbluetooth-dev libgpiod-dev libyaml-cpp-dev openssl libssl-dev libulfius-dev liborcania-dev
|
||||||
|
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
|
- name: Upgrade python tools
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install -U platformio adafruit-nrfutil
|
||||||
|
pip install -U meshtastic --pre
|
||||||
|
|
||||||
|
- name: Upgrade platformio
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
pio upgrade
|
||||||
|
|
||||||
|
- name: Build Native
|
||||||
|
run: bin/build-native.sh
|
||||||
|
|
||||||
|
# We now run integration test before other build steps (to quickly see runtime failures)
|
||||||
|
- name: Build for native
|
||||||
|
run: platformio run -e native
|
||||||
|
|
||||||
|
- name: Integration test
|
||||||
|
run: |
|
||||||
|
.pio/build/native/program & sleep 10 # 5 seconds was not enough
|
||||||
|
echo "Simulator started, launching python test..."
|
||||||
|
python3 -c 'from meshtastic.test import testSimulator; testSimulator()'
|
||||||
|
|
||||||
|
- name: PlatformIO Tests
|
||||||
|
run: platformio test -e native --junit-output-path testreport.xml
|
||||||
|
|
||||||
|
- name: Test Report
|
||||||
|
uses: dorny/test-reporter@v1.9.1
|
||||||
|
if: success() || failure() # run this step even if previous step failed
|
||||||
|
with:
|
||||||
|
name: PlatformIO Tests
|
||||||
|
path: testreport.xml
|
||||||
|
reporter: java-junit
|
||||||
|
|
||||||
hardware-tests:
|
hardware-tests:
|
||||||
runs-on: test-runner
|
runs-on: test-runner
|
||||||
|
|||||||
6
.github/workflows/trunk_format_pr.yml
vendored
6
.github/workflows/trunk_format_pr.yml
vendored
@@ -22,16 +22,12 @@ jobs:
|
|||||||
- name: Run Trunk Fmt
|
- name: Run Trunk Fmt
|
||||||
run: trunk fmt
|
run: trunk fmt
|
||||||
|
|
||||||
- name: Get release version string
|
|
||||||
run: echo "long=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
|
||||||
id: version
|
|
||||||
|
|
||||||
- name: Commit and push changes
|
- name: Commit and push changes
|
||||||
run: |
|
run: |
|
||||||
git config --global user.name "github-actions[bot]"
|
git config --global user.name "github-actions[bot]"
|
||||||
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
||||||
git add .
|
git add .
|
||||||
git commit -m "Add firmware version ${{ steps.version.outputs.long }}"
|
git commit -m "Add firmware version ${{ steps.version.outputs.version }}"
|
||||||
git push
|
git push
|
||||||
|
|
||||||
- name: Comment on PR
|
- name: Comment on PR
|
||||||
|
|||||||
7
.github/workflows/update_protobufs.yml
vendored
7
.github/workflows/update_protobufs.yml
vendored
@@ -12,15 +12,14 @@ jobs:
|
|||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- name: Update submodule
|
- name: Update submodule
|
||||||
if: ${{ github.ref == 'refs/heads/master' }}
|
|
||||||
run: |
|
run: |
|
||||||
git submodule update --remote protobufs
|
git submodule update --remote protobufs
|
||||||
|
|
||||||
- name: Download nanopb
|
- name: Download nanopb
|
||||||
run: |
|
run: |
|
||||||
wget https://jpa.kapsi.fi/nanopb/download/nanopb-0.4.9.1-linux-x86.tar.gz
|
wget https://jpa.kapsi.fi/nanopb/download/nanopb-0.4.9-linux-x86.tar.gz
|
||||||
tar xvzf nanopb-0.4.9.1-linux-x86.tar.gz
|
tar xvzf nanopb-0.4.9-linux-x86.tar.gz
|
||||||
mv nanopb-0.4.9.1-linux-x86 nanopb-0.4.9
|
mv nanopb-0.4.9-linux-x86 nanopb-0.4.9
|
||||||
|
|
||||||
- name: Re-generate protocol buffers
|
- name: Re-generate protocol buffers
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
7
.gitignore
vendored
7
.gitignore
vendored
@@ -1,8 +1,4 @@
|
|||||||
.pio
|
.pio
|
||||||
pio
|
|
||||||
pio.tar
|
|
||||||
web
|
|
||||||
web.tar
|
|
||||||
|
|
||||||
# ignore vscode IDE settings files
|
# ignore vscode IDE settings files
|
||||||
.vscode/*
|
.vscode/*
|
||||||
@@ -12,9 +8,6 @@ web.tar
|
|||||||
*.code-workspace
|
*.code-workspace
|
||||||
|
|
||||||
.idea
|
.idea
|
||||||
.platformio
|
|
||||||
.local
|
|
||||||
.cache
|
|
||||||
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
|
|||||||
3
.gitmodules
vendored
3
.gitmodules
vendored
@@ -1,9 +1,6 @@
|
|||||||
[submodule "protobufs"]
|
[submodule "protobufs"]
|
||||||
path = protobufs
|
path = protobufs
|
||||||
url = https://github.com/meshtastic/protobufs.git
|
url = https://github.com/meshtastic/protobufs.git
|
||||||
[submodule "lib/device-ui"]
|
|
||||||
path = lib/device-ui
|
|
||||||
url = https://github.com/meshtastic/device-ui.git
|
|
||||||
[submodule "meshtestic"]
|
[submodule "meshtestic"]
|
||||||
path = meshtestic
|
path = meshtestic
|
||||||
url = https://github.com/meshtastic/meshTestic
|
url = https://github.com/meshtastic/meshTestic
|
||||||
|
|||||||
@@ -4,34 +4,33 @@ cli:
|
|||||||
plugins:
|
plugins:
|
||||||
sources:
|
sources:
|
||||||
- id: trunk
|
- id: trunk
|
||||||
ref: v1.6.6
|
ref: v1.6.4
|
||||||
uri: https://github.com/trunk-io/plugins
|
uri: https://github.com/trunk-io/plugins
|
||||||
lint:
|
lint:
|
||||||
enabled:
|
enabled:
|
||||||
- prettier@3.4.2
|
- trufflehog@3.83.6
|
||||||
- trufflehog@3.86.1
|
|
||||||
- yamllint@1.35.1
|
- yamllint@1.35.1
|
||||||
- bandit@1.8.0
|
- bandit@1.7.10
|
||||||
- checkov@3.2.334
|
- checkov@3.2.287
|
||||||
- terrascan@1.19.9
|
- terrascan@1.19.9
|
||||||
- trivy@0.58.0
|
- trivy@0.56.2
|
||||||
#- trufflehog@3.63.2-rc0
|
#- trufflehog@3.63.2-rc0
|
||||||
- taplo@0.9.3
|
- taplo@0.9.3
|
||||||
- ruff@0.8.3
|
- ruff@0.7.3
|
||||||
- isort@5.13.2
|
- isort@5.13.2
|
||||||
- markdownlint@0.43.0
|
- markdownlint@0.42.0
|
||||||
- oxipng@9.1.3
|
- oxipng@9.1.2
|
||||||
- svgo@3.3.2
|
- svgo@3.3.2
|
||||||
- actionlint@1.7.4
|
- actionlint@1.7.4
|
||||||
- flake8@7.1.1
|
- flake8@7.1.1
|
||||||
- hadolint@2.12.1-beta
|
- hadolint@2.12.0
|
||||||
- shfmt@3.6.0
|
- shfmt@3.6.0
|
||||||
- shellcheck@0.10.0
|
- shellcheck@0.10.0
|
||||||
- black@24.10.0
|
- black@24.10.0
|
||||||
- git-diff-check
|
- git-diff-check
|
||||||
- gitleaks@8.21.2
|
- gitleaks@8.21.1
|
||||||
- clang-format@16.0.3
|
- clang-format@16.0.3
|
||||||
#- prettier@3.3.3
|
- prettier@3.3.3
|
||||||
ignore:
|
ignore:
|
||||||
- linters: [ALL]
|
- linters: [ALL]
|
||||||
paths:
|
paths:
|
||||||
@@ -40,7 +39,7 @@ runtimes:
|
|||||||
enabled:
|
enabled:
|
||||||
- python@3.10.8
|
- python@3.10.8
|
||||||
- go@1.21.0
|
- go@1.21.0
|
||||||
- node@18.20.5
|
- node@18.12.1
|
||||||
actions:
|
actions:
|
||||||
disabled:
|
disabled:
|
||||||
- trunk-announce
|
- trunk-announce
|
||||||
|
|||||||
7
.vscode/extensions.json
vendored
7
.vscode/extensions.json
vendored
@@ -2,9 +2,8 @@
|
|||||||
// See http://go.microsoft.com/fwlink/?LinkId=827846
|
// See http://go.microsoft.com/fwlink/?LinkId=827846
|
||||||
// for the documentation about the extensions.json format
|
// for the documentation about the extensions.json format
|
||||||
"recommendations": [
|
"recommendations": [
|
||||||
"platformio.platformio-ide"
|
"ms-vscode.cpptools",
|
||||||
|
"platformio.platformio-ide",
|
||||||
|
"trunk.io"
|
||||||
],
|
],
|
||||||
"unwantedRecommendations": [
|
|
||||||
"ms-vscode.cpptools-extension-pack"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|||||||
71
Dockerfile
71
Dockerfile
@@ -1,29 +1,32 @@
|
|||||||
# trunk-ignore-all(terrascan/AC_DOCKER_0002): Known terrascan issue
|
FROM debian:bookworm-slim AS builder
|
||||||
# trunk-ignore-all(hadolint/DL3008): Use latest version of apt packages for buildchain
|
|
||||||
# trunk-ignore-all(trivy/DS002): We must run as root for this container
|
|
||||||
# trunk-ignore-all(checkov/CKV_DOCKER_8): We must run as root for this container
|
|
||||||
# trunk-ignore-all(hadolint/DL3002): We must run as root for this container
|
|
||||||
|
|
||||||
FROM python:3.12-bookworm AS builder
|
|
||||||
ENV DEBIAN_FRONTEND=noninteractive
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
ENV TZ=Etc/UTC
|
ENV TZ=Etc/UTC
|
||||||
|
|
||||||
# Install Dependencies
|
# http://bugs.python.org/issue19846
|
||||||
ENV PIP_ROOT_USER_ACTION=ignore
|
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
|
||||||
RUN apt-get update && apt-get install --no-install-recommends -y wget g++ zip git ca-certificates \
|
ENV LANG C.UTF-8
|
||||||
libgpiod-dev libyaml-cpp-dev libbluetooth-dev libi2c-dev \
|
|
||||||
libusb-1.0-0-dev libulfius-dev liborcania-dev libssl-dev pkg-config && \
|
# Install build deps
|
||||||
apt-get clean && rm -rf /var/lib/apt/lists/* && \
|
USER root
|
||||||
pip install --no-cache-dir -U platformio==6.1.16 && \
|
|
||||||
mkdir /tmp/firmware
|
# trunk-ignore(terrascan/AC_DOCKER_0002): Known terrascan issue
|
||||||
|
# trunk-ignore(hadolint/DL3008): Use latest version of packages for buildchain
|
||||||
|
RUN apt-get update && apt-get install --no-install-recommends -y wget python3 python3-pip python3-wheel python3-venv g++ zip git \
|
||||||
|
ca-certificates libgpiod-dev libyaml-cpp-dev libbluetooth-dev \
|
||||||
|
libulfius-dev liborcania-dev libssl-dev pkg-config && \
|
||||||
|
apt-get clean && rm -rf /var/lib/apt/lists/* && mkdir /tmp/firmware
|
||||||
|
|
||||||
|
RUN groupadd -g 1000 mesh && useradd -ml -u 1000 -g 1000 mesh && chown mesh:mesh /tmp/firmware
|
||||||
|
USER mesh
|
||||||
|
|
||||||
# Copy source code
|
|
||||||
WORKDIR /tmp/firmware
|
WORKDIR /tmp/firmware
|
||||||
COPY . /tmp/firmware
|
RUN python3 -m venv /tmp/firmware
|
||||||
|
RUN bash -o pipefail -c "source bin/activate; pip3 install --no-cache-dir -U platformio==6.1.15"
|
||||||
# Build
|
# trunk-ignore(terrascan/AC_DOCKER_00024): We would actually like these files to be owned by mesh tyvm
|
||||||
RUN bash ./bin/build-native.sh && \
|
COPY --chown=mesh:mesh . /tmp/firmware
|
||||||
cp "/tmp/firmware/release/meshtasticd_linux_$(uname -m)" "/tmp/firmware/release/meshtasticd"
|
RUN bash -o pipefail -c "source ./bin/activate && bash ./bin/build-native.sh"
|
||||||
|
RUN cp "/tmp/firmware/release/meshtasticd_linux_$(uname -m)" "/tmp/firmware/release/meshtasticd"
|
||||||
|
|
||||||
|
|
||||||
##### PRODUCTION BUILD #############
|
##### PRODUCTION BUILD #############
|
||||||
@@ -32,26 +35,20 @@ FROM debian:bookworm-slim
|
|||||||
ENV DEBIAN_FRONTEND=noninteractive
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
ENV TZ=Etc/UTC
|
ENV TZ=Etc/UTC
|
||||||
|
|
||||||
# nosemgrep: dockerfile.security.last-user-is-root.last-user-is-root
|
# trunk-ignore(terrascan/AC_DOCKER_0002): Known terrascan issue
|
||||||
USER root
|
# trunk-ignore(hadolint/DL3008): Use latest version of packages for buildchain
|
||||||
|
RUN apt-get update && apt-get --no-install-recommends -y install libc-bin libc6 libgpiod2 libyaml-cpp0.7 libulfius2.7 liborcania2.3 libssl3 && \
|
||||||
|
apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
RUN apt-get update && apt-get --no-install-recommends -y install libc-bin libc6 libgpiod2 libyaml-cpp0.7 libi2c0 libulfius2.7 libusb-1.0-0-dev liborcania2.3 libssl3 && \
|
RUN groupadd -g 1000 mesh && useradd -ml -u 1000 -g 1000 mesh
|
||||||
apt-get clean && rm -rf /var/lib/apt/lists/* \
|
USER mesh
|
||||||
&& mkdir -p /var/lib/meshtasticd \
|
|
||||||
&& mkdir -p /etc/meshtasticd/config.d \
|
|
||||||
&& mkdir -p /etc/meshtasticd/ssl
|
|
||||||
|
|
||||||
# Fetch compiled binary from the builder
|
WORKDIR /home/mesh
|
||||||
COPY --from=builder /tmp/firmware/release/meshtasticd /usr/sbin/
|
COPY --from=builder /tmp/firmware/release/meshtasticd /home/mesh/
|
||||||
# Copy config templates
|
|
||||||
COPY ./bin/config.d /etc/meshtasticd/available.d
|
|
||||||
|
|
||||||
WORKDIR /var/lib/meshtasticd
|
RUN mkdir data
|
||||||
VOLUME /var/lib/meshtasticd
|
VOLUME /home/mesh/data
|
||||||
|
|
||||||
# Expose Meshtastic TCP API port from the host
|
CMD [ "sh", "-cx", "./meshtasticd -d /home/mesh/data --hwid=${HWID:-$RANDOM}" ]
|
||||||
EXPOSE 4403
|
|
||||||
|
|
||||||
CMD [ "sh", "-cx", "meshtasticd -d /var/lib/meshtasticd" ]
|
|
||||||
|
|
||||||
HEALTHCHECK NONE
|
HEALTHCHECK NONE
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
# trunk-ignore-all(trivy/DS002): We must run as root for this container
|
|
||||||
# trunk-ignore-all(checkov/CKV_DOCKER_8): We must run as root for this container
|
|
||||||
# trunk-ignore-all(hadolint/DL3002): We must run as root for this container
|
|
||||||
|
|
||||||
FROM python:3.12-alpine3.21 AS builder
|
|
||||||
|
|
||||||
ENV PIP_ROOT_USER_ACTION=ignore
|
|
||||||
RUN apk add bash g++ libstdc++-dev linux-headers zip git ca-certificates libgpiod-dev yaml-cpp-dev bluez-dev \
|
|
||||||
libusb-dev i2c-tools-dev openssl-dev pkgconf argp-standalone && \
|
|
||||||
pip install --no-cache-dir -U platformio==6.1.16 && \
|
|
||||||
mkdir /tmp/firmware
|
|
||||||
|
|
||||||
WORKDIR /tmp/firmware
|
|
||||||
COPY . /tmp/firmware
|
|
||||||
|
|
||||||
# Create small package (no debugging symbols)
|
|
||||||
# Add `argp` for musl
|
|
||||||
ENV PLATFORMIO_BUILD_FLAGS="-Os -ffunction-sections -fdata-sections -Wl,--gc-sections -largp"
|
|
||||||
|
|
||||||
RUN bash ./bin/build-native.sh && \
|
|
||||||
cp "/tmp/firmware/release/meshtasticd_linux_$(uname -m)" "/tmp/firmware/release/meshtasticd"
|
|
||||||
|
|
||||||
# ##### PRODUCTION BUILD #############
|
|
||||||
|
|
||||||
FROM alpine:3.21
|
|
||||||
|
|
||||||
# nosemgrep: dockerfile.security.last-user-is-root.last-user-is-root
|
|
||||||
USER root
|
|
||||||
|
|
||||||
RUN apk add libstdc++ libgpiod yaml-cpp libusb i2c-tools \
|
|
||||||
&& mkdir -p /var/lib/meshtasticd \
|
|
||||||
&& mkdir -p /etc/meshtasticd/config.d \
|
|
||||||
&& mkdir -p /etc/meshtasticd/ssl
|
|
||||||
COPY --from=builder /tmp/firmware/release/meshtasticd /usr/sbin/
|
|
||||||
|
|
||||||
WORKDIR /var/lib/meshtasticd
|
|
||||||
VOLUME /var/lib/meshtasticd
|
|
||||||
|
|
||||||
EXPOSE 4403
|
|
||||||
|
|
||||||
CMD [ "sh", "-cx", "meshtasticd --fsdir=/var/lib/meshtasticd" ]
|
|
||||||
|
|
||||||
HEALTHCHECK NONE
|
|
||||||
33
arch/apollo3/apollo3.ini
Normal file
33
arch/apollo3/apollo3.ini
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
[apollo3_base]
|
||||||
|
extends = arduino_base
|
||||||
|
platform = https://github.com/nigelb/platform-apollo3blue.git#2e8a9895cf82f2836c483885e6f89b3f83d3ade4
|
||||||
|
platform_packages=framework-arduinoapollo3@https://github.com/sparkfun/Arduino_Apollo3#a0d99c5fc9b1112d46a9d11c1339898d01e586c9
|
||||||
|
build_type = debug
|
||||||
|
build_flags =
|
||||||
|
${arduino_base.build_flags}
|
||||||
|
-Isrc/platform/apollo3 -g
|
||||||
|
-I"${platformio.packages_dir}/framework-arduinoapollo3/libraries/SPI/src"
|
||||||
|
-DRADIOLIB_EEPROM_UNSUPPORTED
|
||||||
|
-DMESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR
|
||||||
|
build_src_filter =
|
||||||
|
${arduino_base.build_src_filter}
|
||||||
|
-<platform/nrf52>
|
||||||
|
-<platform/esp32/>
|
||||||
|
-<platform/rp2040>
|
||||||
|
-<platform/portduino>
|
||||||
|
-<platform/stm32wl>
|
||||||
|
-<nimble/>
|
||||||
|
-<mesh/api/>
|
||||||
|
-<mesh/http/>
|
||||||
|
-<mesh/wifi/>
|
||||||
|
-<modules/esp32>
|
||||||
|
-<mesh/eth/>
|
||||||
|
-<input>
|
||||||
|
-<buzz>
|
||||||
|
-<modules/Telemetry>
|
||||||
|
lib_deps =
|
||||||
|
${env.lib_deps}
|
||||||
|
charlesbaynham/OSFS@^1.2.3
|
||||||
|
rweather/Crypto
|
||||||
|
lib_ignore =
|
||||||
|
mathertel/OneButton
|
||||||
@@ -5,7 +5,13 @@ custom_esp32_kind = esp32
|
|||||||
platform = platformio/espressif32@6.9.0
|
platform = platformio/espressif32@6.9.0
|
||||||
|
|
||||||
build_src_filter =
|
build_src_filter =
|
||||||
${arduino_base.build_src_filter} -<platform/nrf52/> -<platform/stm32wl> -<platform/rp2xx0> -<mesh/eth/> -<mesh/raspihttp>
|
${arduino_base.build_src_filter}
|
||||||
|
-<platform/nrf52/>
|
||||||
|
-<platform/stm32wl>
|
||||||
|
-<platform/rp2xx0>
|
||||||
|
-<platform/apollo3>
|
||||||
|
-<mesh/eth/>
|
||||||
|
-<mesh/raspihttp>
|
||||||
|
|
||||||
upload_speed = 921600
|
upload_speed = 921600
|
||||||
debug_init_break = tbreak setup
|
debug_init_break = tbreak setup
|
||||||
@@ -37,7 +43,6 @@ build_flags =
|
|||||||
-DLIBPAX_ARDUINO
|
-DLIBPAX_ARDUINO
|
||||||
-DLIBPAX_WIFI
|
-DLIBPAX_WIFI
|
||||||
-DLIBPAX_BLE
|
-DLIBPAX_BLE
|
||||||
-DHAS_UDP_MULTICAST=1
|
|
||||||
;-DDEBUG_HEAP
|
;-DDEBUG_HEAP
|
||||||
|
|
||||||
lib_deps =
|
lib_deps =
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
[esp32c3_base]
|
[esp32c3_base]
|
||||||
extends = esp32_base
|
extends = esp32_base
|
||||||
|
|
||||||
custom_esp32_kind = esp32c3
|
custom_esp32_kind = esp32c3
|
||||||
|
|
||||||
monitor_speed = 115200
|
monitor_speed = 115200
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[esp32s3_base]
|
[esp32s3_base]
|
||||||
extends = esp32_base
|
extends = esp32_base
|
||||||
|
|
||||||
custom_esp32_kind = esp32s3
|
custom_esp32_kind = esp32s3
|
||||||
|
|
||||||
monitor_speed = 115200
|
monitor_speed = 115200
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,10 @@
|
|||||||
[nrf52_base]
|
[nrf52_base]
|
||||||
; Instead of the standard nordicnrf52 platform, we use our fork which has our added variant files
|
; Instead of the standard nordicnrf52 platform, we use our fork which has our added variant files
|
||||||
platform = platformio/nordicnrf52@^10.7.0
|
platform = platformio/nordicnrf52@^10.5.0
|
||||||
extends = arduino_base
|
extends = arduino_base
|
||||||
platform_packages =
|
platform_packages =
|
||||||
; our custom Git version until they merge our PR
|
; our custom Git version until they merge our PR
|
||||||
framework-arduinoadafruitnrf52 @ https://github.com/meshtastic/Adafruit_nRF52_Arduino.git#e13f5820002a4fb2a5e6754b42ace185277e5adf
|
framework-arduinoadafruitnrf52 @ https://github.com/geeksville/Adafruit_nRF52_Arduino.git
|
||||||
toolchain-gccarmnoneeabi@~1.90301.0
|
|
||||||
|
|
||||||
build_type = debug
|
build_type = debug
|
||||||
build_flags =
|
build_flags =
|
||||||
@@ -20,7 +19,18 @@ build_flags =
|
|||||||
-DMAX_NUM_NODES=80
|
-DMAX_NUM_NODES=80
|
||||||
|
|
||||||
build_src_filter =
|
build_src_filter =
|
||||||
${arduino_base.build_src_filter} -<platform/esp32/> -<platform/stm32wl> -<nimble/> -<mesh/wifi/> -<mesh/api/> -<mesh/http/> -<modules/esp32> -<platform/rp2xx0> -<mesh/eth/> -<mesh/raspihttp>
|
${arduino_base.build_src_filter}
|
||||||
|
-<platform/esp32/>
|
||||||
|
-<platform/stm32wl>
|
||||||
|
-<nimble/>
|
||||||
|
-<mesh/wifi/>
|
||||||
|
-<mesh/api/>
|
||||||
|
-<mesh/http/>
|
||||||
|
-<modules/esp32>
|
||||||
|
-<platform/rp2xx0>
|
||||||
|
-<mesh/eth/>
|
||||||
|
-<mesh/raspihttp>
|
||||||
|
-<platform/apollo3>
|
||||||
|
|
||||||
lib_deps=
|
lib_deps=
|
||||||
${arduino_base.lib_deps}
|
${arduino_base.lib_deps}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
; The Portduino based 'native' environment. Currently supported on Linux targets with real LoRa hardware (or simulated).
|
; The Portduino based sim environment on top of any host OS, all hardware will be simulated
|
||||||
[portduino_base]
|
[portduino_base]
|
||||||
platform = https://github.com/meshtastic/platform-native.git#562d189828f09fbf4c4093b3c0104bae9d8e9ff9
|
platform = https://github.com/meshtastic/platform-native.git#bcd02436cfca91f7d28ad0f7dab977c6aaa781af
|
||||||
framework = arduino
|
framework = arduino
|
||||||
|
|
||||||
build_src_filter =
|
build_src_filter =
|
||||||
@@ -10,6 +10,7 @@ build_src_filter =
|
|||||||
-<platform/nrf52/>
|
-<platform/nrf52/>
|
||||||
-<platform/stm32wl/>
|
-<platform/stm32wl/>
|
||||||
-<platform/rp2xx0>
|
-<platform/rp2xx0>
|
||||||
|
-<platform/apollo3>
|
||||||
-<mesh/wifi/>
|
-<mesh/wifi/>
|
||||||
-<mesh/http/>
|
-<mesh/http/>
|
||||||
+<mesh/raspihttp/>
|
+<mesh/raspihttp/>
|
||||||
@@ -25,8 +26,7 @@ lib_deps =
|
|||||||
${networking_base.lib_deps}
|
${networking_base.lib_deps}
|
||||||
${radiolib_base.lib_deps}
|
${radiolib_base.lib_deps}
|
||||||
rweather/Crypto@^0.4.0
|
rweather/Crypto@^0.4.0
|
||||||
lovyan03/LovyanGFX@^1.2.0
|
https://github.com/lovyan03/LovyanGFX.git#1401c28a47646fe00538d487adcb2eb3c72de805
|
||||||
https://github.com/pine64/libch341-spi-userspace#a9b17e3452f7fb747000d9b4ad4409155b39f6ef
|
|
||||||
|
|
||||||
build_flags =
|
build_flags =
|
||||||
${arduino_base.build_flags}
|
${arduino_base.build_flags}
|
||||||
@@ -34,10 +34,7 @@ build_flags =
|
|||||||
-Isrc/platform/portduino
|
-Isrc/platform/portduino
|
||||||
-DRADIOLIB_EEPROM_UNSUPPORTED
|
-DRADIOLIB_EEPROM_UNSUPPORTED
|
||||||
-DPORTDUINO_LINUX_HARDWARE
|
-DPORTDUINO_LINUX_HARDWARE
|
||||||
-lpthread
|
|
||||||
-lstdc++fs
|
-lstdc++fs
|
||||||
-lbluetooth
|
-lbluetooth
|
||||||
-lgpiod
|
-lgpiod
|
||||||
-lyaml-cpp
|
-lyaml-cpp
|
||||||
-li2c
|
|
||||||
-std=c++17
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
; Common settings for rp2040 Processor based targets
|
; Common settings for rp2040 Processor based targets
|
||||||
[rp2040_base]
|
[rp2040_base]
|
||||||
platform = https://github.com/maxgerhardt/platform-raspberrypi.git#19e30129fb1428b823be585c787dcb4ac0d9014c ; For arduino-pico >=4.2.1
|
platform = https://github.com/maxgerhardt/platform-raspberrypi.git#19e30129fb1428b823be585c787dcb4ac0d9014c ; For arduino-pico 4.2.1
|
||||||
extends = arduino_base
|
extends = arduino_base
|
||||||
platform_packages = framework-arduinopico@https://github.com/earlephilhower/arduino-pico.git#6024e9a7e82a72e38dd90f42029ba3748835eb2e ; 4.3.0 with fix MDNS
|
platform_packages = framework-arduinopico@https://github.com/earlephilhower/arduino-pico.git#996c3bfab9758f12c07aa20cc6d352e630c16987 ; 4.2.1 with fix for sporadic hangs
|
||||||
|
|
||||||
board_build.core = earlephilhower
|
board_build.core = earlephilhower
|
||||||
board_build.filesystem_size = 0.5m
|
board_build.filesystem_size = 0.5m
|
||||||
@@ -14,11 +14,10 @@ build_flags =
|
|||||||
-D__PLAT_RP2040__
|
-D__PLAT_RP2040__
|
||||||
# -D _POSIX_THREADS
|
# -D _POSIX_THREADS
|
||||||
build_src_filter =
|
build_src_filter =
|
||||||
${arduino_base.build_src_filter} -<platform/esp32/> -<nimble/> -<modules/esp32> -<platform/nrf52/> -<platform/stm32wl> -<mesh/eth/> -<mesh/wifi/> -<mesh/http/> -<mesh/raspihttp>
|
${arduino_base.build_src_filter} -<platform/esp32/> -<nimble/> -<modules/esp32> -<platform/nrf52/> -<platform/apollo3> -<platform/stm32wl> -<mesh/eth/> -<mesh/wifi/> -<mesh/http/> -<mesh/raspihttp>
|
||||||
|
|
||||||
lib_ignore =
|
lib_ignore =
|
||||||
BluetoothOTA
|
BluetoothOTA
|
||||||
lvgl
|
|
||||||
|
|
||||||
lib_deps =
|
lib_deps =
|
||||||
${arduino_base.lib_deps}
|
${arduino_base.lib_deps}
|
||||||
|
|||||||
@@ -1,18 +1,28 @@
|
|||||||
; Common settings for rp2040 Processor based targets
|
; Common settings for rp2040 Processor based targets
|
||||||
[rp2350_base]
|
[rp2350_base]
|
||||||
platform = https://github.com/maxgerhardt/platform-raspberrypi.git#19e30129fb1428b823be585c787dcb4ac0d9014c ; For arduino-pico >=4.2.1
|
platform = https://github.com/maxgerhardt/platform-raspberrypi.git#19e30129fb1428b823be585c787dcb4ac0d9014c ; For arduino-pico 4.2.1
|
||||||
extends = arduino_base
|
extends = arduino_base
|
||||||
platform_packages = framework-arduinopico@https://github.com/earlephilhower/arduino-pico.git#6024e9a7e82a72e38dd90f42029ba3748835eb2e ; 4.3.0 with fix MDNS
|
platform_packages = framework-arduinopico@https://github.com/earlephilhower/arduino-pico.git#96c3bfab9758f12c07aa20cc6d352e630c16987 ; 4.2.1 with fix for sporadic hangs
|
||||||
|
|
||||||
board_build.core = earlephilhower
|
board_build.core = earlephilhower
|
||||||
board_build.filesystem_size = 0.5m
|
board_build.filesystem_size = 0.5m
|
||||||
build_flags =
|
build_flags =
|
||||||
${arduino_base.build_flags} -Wno-unused-variable -Wcast-align
|
${arduino_base.build_flags} -Wno-unused-variable
|
||||||
-Isrc/platform/rp2xx0
|
-Isrc/platform/rp2xx0
|
||||||
-D__PLAT_RP2350__
|
-D__PLAT_RP2040__
|
||||||
# -D _POSIX_THREADS
|
# -D _POSIX_THREADS
|
||||||
build_src_filter =
|
build_src_filter =
|
||||||
${arduino_base.build_src_filter} -<platform/esp32/> -<nimble/> -<modules/esp32> -<platform/nrf52/> -<platform/stm32wl> -<mesh/eth/> -<mesh/wifi/> -<mesh/http/> -<mesh/raspihttp> -<platform/rp2xx0/pico_sleep> -<platform/rp2xx0/hardware_rosc>
|
${arduino_base.build_src_filter}
|
||||||
|
-<platform/esp32/>
|
||||||
|
-<nimble/>
|
||||||
|
-<modules/esp32>
|
||||||
|
-<platform/nrf52/>
|
||||||
|
-<platform/stm32wl>
|
||||||
|
-<mesh/eth/>
|
||||||
|
-<mesh/wifi/>
|
||||||
|
-<mesh/http/>
|
||||||
|
-<platform/apollo3>
|
||||||
|
-<mesh/raspihttp>
|
||||||
|
|
||||||
lib_ignore =
|
lib_ignore =
|
||||||
BluetoothOTA
|
BluetoothOTA
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ build_flags =
|
|||||||
-fdata-sections
|
-fdata-sections
|
||||||
|
|
||||||
build_src_filter =
|
build_src_filter =
|
||||||
${arduino_base.build_src_filter} -<platform/esp32/> -<nimble/> -<mesh/api/> -<mesh/wifi/> -<mesh/http/> -<modules/esp32> -<mesh/eth/> -<input> -<buzz> -<modules/RemoteHardwareModule.cpp> -<platform/nrf52> -<platform/portduino> -<platform/rp2xx0> -<mesh/raspihttp>
|
${arduino_base.build_src_filter} -<platform/esp32/> -<nimble/> -<mesh/api/> -<mesh/wifi/> -<mesh/http/> -<modules/esp32> -<mesh/eth/> -<input> -<buzz> -<modules/RemoteHardwareModule.cpp> -<platform/nrf52> -<platform/portduino> -<platform/rp2xx0> -<platform/apollo3> -<mesh/raspihttp>
|
||||||
|
|
||||||
board_upload.offset_address = 0x08000000
|
board_upload.offset_address = 0x08000000
|
||||||
upload_protocol = stlink
|
upload_protocol = stlink
|
||||||
|
|||||||
1
bin/.gitignore
vendored
1
bin/.gitignore
vendored
@@ -1 +0,0 @@
|
|||||||
config.yaml
|
|
||||||
@@ -35,11 +35,11 @@ cp $SRCBIN $OUTDIR/$basename-update.bin
|
|||||||
|
|
||||||
echo "Building Filesystem for ESP32 targets"
|
echo "Building Filesystem for ESP32 targets"
|
||||||
pio run --environment $1 -t buildfs
|
pio run --environment $1 -t buildfs
|
||||||
cp .pio/build/$1/littlefs.bin $OUTDIR/littlefswebui-$1-$VERSION.bin
|
cp .pio/build/$1/littlefs.bin $OUTDIR/littlefswebui-$VERSION.bin
|
||||||
# Remove webserver files from the filesystem and rebuild
|
# Remove webserver files from the filesystem and rebuild
|
||||||
ls -l data/static # Diagnostic list of files
|
ls -l data/static # Diagnostic list of files
|
||||||
rm -rf data/static
|
rm -rf data/static
|
||||||
pio run --environment $1 -t buildfs
|
pio run --environment $1 -t buildfs
|
||||||
cp .pio/build/$1/littlefs.bin $OUTDIR/littlefs-$1-$VERSION.bin
|
cp .pio/build/$1/littlefs.bin $OUTDIR/littlefs-$VERSION.bin
|
||||||
cp bin/device-install.* $OUTDIR
|
cp bin/device-install.* $OUTDIR
|
||||||
cp bin/device-update.* $OUTDIR
|
cp bin/device-update.* $OUTDIR
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
sed -i 's/#-DBUILD_EPOCH=$UNIX_TIME/-DBUILD_EPOCH=$UNIX_TIME/' platformio.ini
|
|
||||||
|
|
||||||
export PIP_BREAK_SYSTEM_PACKAGES=1
|
|
||||||
|
|
||||||
if (echo $2 | grep -q "esp32"); then
|
|
||||||
bin/build-esp32.sh $1
|
|
||||||
elif (echo $2 | grep -q "nrf52"); then
|
|
||||||
bin/build-nrf52.sh $1
|
|
||||||
elif (echo $2 | grep -q "stm32"); then
|
|
||||||
bin/build-stm32.sh $1
|
|
||||||
elif (echo $2 | grep -q "rpi2040"); then
|
|
||||||
bin/build-rpi2040.sh $1
|
|
||||||
else
|
|
||||||
echo "Unknown target $2"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
@@ -24,7 +24,7 @@ def write_macros_to_json(macros, output_file):
|
|||||||
|
|
||||||
def main():
|
def main():
|
||||||
header_file = 'userPrefs.h'
|
header_file = 'userPrefs.h'
|
||||||
output_file = 'userPrefs.jsonc'
|
output_file = 'userPrefs.json'
|
||||||
# Uncomment all macros in the header file
|
# Uncomment all macros in the header file
|
||||||
with open(header_file, 'r') as file:
|
with open(header_file, 'r') as file:
|
||||||
lines = file.readlines()
|
lines = file.readlines()
|
||||||
|
|||||||
@@ -12,6 +12,19 @@ Lora:
|
|||||||
# IRQ: 17
|
# IRQ: 17
|
||||||
# Reset: 22
|
# Reset: 22
|
||||||
|
|
||||||
|
# Module: sx1262 # pinedio
|
||||||
|
# CS: 0
|
||||||
|
# IRQ: 10
|
||||||
|
# Busy: 11
|
||||||
|
# DIO2_AS_RF_SWITCH: true
|
||||||
|
# spidev: spidev0.1
|
||||||
|
|
||||||
|
# Module: RF95 # Adafruit RFM9x
|
||||||
|
# Reset: 25
|
||||||
|
# CS: 7
|
||||||
|
# IRQ: 22
|
||||||
|
# Busy: 23
|
||||||
|
|
||||||
# Module: RF95 # Elecrow Lora RFM95 IOT https://www.elecrow.com/lora-rfm95-iot-board-for-rpi.html
|
# Module: RF95 # Elecrow Lora RFM95 IOT https://www.elecrow.com/lora-rfm95-iot-board-for-rpi.html
|
||||||
# Reset: 22
|
# Reset: 22
|
||||||
# CS: 7
|
# CS: 7
|
||||||
@@ -23,47 +36,6 @@ Lora:
|
|||||||
# Busy: 20
|
# Busy: 20
|
||||||
# Reset: 18
|
# Reset: 18
|
||||||
|
|
||||||
### The Radxa Zero 3E/W employs multiple gpio chips.
|
|
||||||
### Each gpio pin must be unique, but can be assigned to a specific gpio chip and line.
|
|
||||||
### In case solely a no. is given, the default gpio chip and pin == line will be employed.
|
|
||||||
###
|
|
||||||
# Module: sx1262 # Radxa Zero 3E/W + Ebyte E22-900M30S
|
|
||||||
# DIO2_AS_RF_SWITCH: true
|
|
||||||
# DIO3_TCXO_VOLTAGE: 1.8
|
|
||||||
# CS: # NSS PIN_24 -> chip 4, line 22
|
|
||||||
# pin: 24
|
|
||||||
# gpiochip: 4
|
|
||||||
# line: 22
|
|
||||||
# SCK: # SCK PIN_23 -> chip 4, line 18
|
|
||||||
# pin: 23
|
|
||||||
# gpiochip: 4
|
|
||||||
# line: 18
|
|
||||||
# Busy: # BUSY PIN_29 -> chip 3!, line 11
|
|
||||||
# pin: 29
|
|
||||||
# gpiochip: 3
|
|
||||||
# line: 11
|
|
||||||
# MOSI: # MOSI PIN_19 -> chip 4, line 19
|
|
||||||
# pin: 19
|
|
||||||
# gpiochip: 4
|
|
||||||
# line: 19
|
|
||||||
# MISO: # MISO PIN_21 -> chip 4, line 21
|
|
||||||
# pin: 21
|
|
||||||
# gpiochip: 4
|
|
||||||
# line: 21
|
|
||||||
# Reset: # NRST PIN_27 -> chip 4, line 10
|
|
||||||
# pin: 27
|
|
||||||
# gpiochip: 4
|
|
||||||
# line: 10
|
|
||||||
# IRQ: # DIO1 PIN_28 -> chip 4, line 11
|
|
||||||
# pin: 28
|
|
||||||
# gpiochip: 4
|
|
||||||
# line: 11
|
|
||||||
# RXen: # RXEN PIN_22 -> chip 3!, line 17
|
|
||||||
# pin: 22
|
|
||||||
# gpiochip: 3
|
|
||||||
# line: 17
|
|
||||||
# TXen: RADIOLIB_NC # TXEN no PIN, no line, fallback to default gpio chip
|
|
||||||
|
|
||||||
# Module: sx1268 # SX1268-based modules, tested with Ebyte E22 400M33S
|
# Module: sx1268 # SX1268-based modules, tested with Ebyte E22 400M33S
|
||||||
# CS: 21
|
# CS: 21
|
||||||
# IRQ: 16
|
# IRQ: 16
|
||||||
@@ -78,11 +50,11 @@ Lora:
|
|||||||
# TXen: x # TX and RX enable pins
|
# TXen: x # TX and RX enable pins
|
||||||
# RXen: x
|
# RXen: x
|
||||||
|
|
||||||
# SX126X_MAX_POWER: 8 # Limit the output power to 8 dBm, useful for amped nodes
|
# ch341_quirk: true # Uncomment this to use the chunked SPI transfer that seems to fix the ch341
|
||||||
|
|
||||||
# spiSpeed: 2000000
|
# spiSpeed: 2000000
|
||||||
|
|
||||||
### Set default/fallback gpio chip to use in /dev/. Defaults to 0.
|
### Set gpio chip to use in /dev/. Defaults to 0.
|
||||||
### Notably the Raspberry Pi 5 puts the GPIO header on gpiochip4
|
### Notably the Raspberry Pi 5 puts the GPIO header on gpiochip4
|
||||||
# gpiochip: 4
|
# gpiochip: 4
|
||||||
|
|
||||||
@@ -183,13 +155,9 @@ Logging:
|
|||||||
|
|
||||||
Webserver:
|
Webserver:
|
||||||
# Port: 443 # Port for Webserver & Webservices
|
# Port: 443 # Port for Webserver & Webservices
|
||||||
# RootPath: /usr/share/meshtasticd/web # Root Dir of WebServer
|
# RootPath: /usr/share/doc/meshtasticd/web # Root Dir of WebServer
|
||||||
# SSLKey: /etc/meshtasticd/ssl/private_key.pem # Path to SSL Key, generated if not present
|
|
||||||
# SSLCert: /etc/meshtasticd/ssl/certificate.pem # Path to SSL Certificate, generated if not present
|
|
||||||
|
|
||||||
General:
|
General:
|
||||||
MaxNodes: 200
|
MaxNodes: 200
|
||||||
MaxMessageQueue: 100
|
MaxMessageQueue: 100
|
||||||
ConfigDirectory: /etc/meshtasticd/config.d/
|
ConfigDirectory: /etc/meshtasticd/config.d/
|
||||||
# MACAddress: AA:BB:CC:DD:EE:FF
|
|
||||||
# MACAddressSource: eth0
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
Display:
|
|
||||||
Panel: X11
|
|
||||||
Width: 480
|
|
||||||
Height: 480
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
Lora:
|
|
||||||
Module: sx1262 # BananaPi-BPI-R4 SPI via 26p GPIO Header
|
|
||||||
## CS: 28
|
|
||||||
IRQ: 50
|
|
||||||
Busy: 62
|
|
||||||
Reset: 51
|
|
||||||
spidev: spidev1.0
|
|
||||||
DIO2_AS_RF_SWITCH: true
|
|
||||||
DIO3_TCXO_VOLTAGE: true
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
## https://www.mikroe.com/lr-iot-click
|
|
||||||
Lora:
|
|
||||||
Module: lr1110 # OpenWRT ONE mikroBUS with LR-IOT-CLICK
|
|
||||||
# CS: 25
|
|
||||||
IRQ: 10
|
|
||||||
Busy: 12
|
|
||||||
# Reset: 2
|
|
||||||
spidev: spidev2.0
|
|
||||||
DIO3_TCXO_VOLTAGE: 1.6
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
Lora:
|
|
||||||
Module: sx1262
|
|
||||||
IRQ: 10
|
|
||||||
Busy: 12
|
|
||||||
# Reset: 2
|
|
||||||
spidev: spidev2.0
|
|
||||||
DIO2_AS_RF_SWITCH: true
|
|
||||||
DIO3_TCXO_VOLTAGE: true
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
---
|
|
||||||
Lora:
|
|
||||||
## Ebyte E80-900M22S
|
|
||||||
## This is a bit experimental
|
|
||||||
##
|
|
||||||
##
|
|
||||||
Module: lr1121
|
|
||||||
gpiochip: 1 # subtract 32 from the gpio numbers
|
|
||||||
DIO3_TCXO_VOLTAGE: 1.8
|
|
||||||
CS: 16 #pin6 / GPIO48 1C0
|
|
||||||
IRQ: 23 #pin17 / GPIO55 1C7
|
|
||||||
Busy: 22 #pin16 / GPIO54 1C6
|
|
||||||
Reset: 25 #pin13 / GPIO57 1D1
|
|
||||||
|
|
||||||
|
|
||||||
spidev: spidev0.0 #pins are (CS=16, CLK=17, MOSI=18, MISO=19)
|
|
||||||
spiSpeed: 2000000
|
|
||||||
|
|
||||||
General:
|
|
||||||
MACAddressSource: eth0
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
---
|
|
||||||
Lora:
|
|
||||||
## Ebyte E22-900M30S, E22-900M22S with or without external RF switching setup
|
|
||||||
## HT-RA62 (Has internal switching, but whatever)
|
|
||||||
## Seeed WIO SX1262 (already has TXEN-DIO2 link, but needs RXEN)
|
|
||||||
## Will work with any module with or without RF switching, and with TCXO
|
|
||||||
Module: sx1262
|
|
||||||
gpiochip: 1 # subtract 32 from the gpio numbers
|
|
||||||
DIO2_AS_RF_SWITCH: true
|
|
||||||
DIO3_TCXO_VOLTAGE: true
|
|
||||||
CS: 16 #pin6 / GPIO48 1C0
|
|
||||||
IRQ: 23 #pin17 / GPIO55 1C7
|
|
||||||
Busy: 22 #pin16 / GPIO54 1C6
|
|
||||||
Reset: 25 #pin13 / GPIO57 1D1
|
|
||||||
RXen: 24 #pin12 / GPIO56 1D0 # Not strictly needed for auto-switching, but why complicate things?
|
|
||||||
# TXen: bridge to DIO2 on E22 module
|
|
||||||
spidev: spidev0.0 #pins are (CS=16, CLK=17, MOSI=18, MISO=19)
|
|
||||||
spiSpeed: 2000000
|
|
||||||
|
|
||||||
General:
|
|
||||||
MACAddressSource: eth0
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
---
|
|
||||||
Lora:
|
|
||||||
## Ebyte E22-900MM22S with no external RF switching setup
|
|
||||||
## Waveshare SX126X XXXM, AI Thinker RA-01SH
|
|
||||||
## Will work with any module with or without RF switching and no TCXO
|
|
||||||
|
|
||||||
Module: sx1262
|
|
||||||
gpiochip: 1 # subtract 32 from the gpio numbers
|
|
||||||
DIO2_AS_RF_SWITCH: true
|
|
||||||
DIO3_TCXO_VOLTAGE: false
|
|
||||||
CS: 16 #pin6 / GPIO48 1C0
|
|
||||||
IRQ: 23 #pin17 / GPIO55 1C7
|
|
||||||
Busy: 22 #pin16 / GPIO54 1C6
|
|
||||||
Reset: 25 #pin13 / GPIO57 1D1
|
|
||||||
RXen: 24 #pin12 / GPIO56 1D0 # Not strictly needed for auto-switching, but why complicate things?
|
|
||||||
# TXen: bridge to DIO2 on E22 module
|
|
||||||
spidev: spidev0.0 #pins are (CS=16, CLK=17, MOSI=18, MISO=19)
|
|
||||||
spiSpeed: 2000000
|
|
||||||
|
|
||||||
General:
|
|
||||||
MACAddressSource: eth0
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
# Module: RF95 # Adafruit RFM9x
|
|
||||||
# Reset: 25
|
|
||||||
# CS: 7
|
|
||||||
# IRQ: 22
|
|
||||||
# Busy: 23
|
|
||||||
@@ -7,6 +7,3 @@ Lora:
|
|||||||
TXen: 13
|
TXen: 13
|
||||||
RXen: 12
|
RXen: 12
|
||||||
DIO3_TCXO_VOLTAGE: true
|
DIO3_TCXO_VOLTAGE: true
|
||||||
# Only for E22-900M33S:
|
|
||||||
# Limit the output power to 8 dBm
|
|
||||||
# SX126X_MAX_POWER: 8
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
Lora:
|
|
||||||
Module: sx1262
|
|
||||||
CS: 0
|
|
||||||
IRQ: 6
|
|
||||||
Reset: 2
|
|
||||||
Busy: 4
|
|
||||||
spidev: ch341
|
|
||||||
DIO3_TCXO_VOLTAGE: true
|
|
||||||
# USB_Serialnum: 12345678
|
|
||||||
USB_PID: 0x5512
|
|
||||||
USB_VID: 0x1A86
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
Lora:
|
|
||||||
Module: sx1262
|
|
||||||
CS: 0
|
|
||||||
IRQ: 10
|
|
||||||
spidev: ch341
|
|
||||||
@@ -73,7 +73,7 @@ shift "$((OPTIND - 1))"
|
|||||||
if [ -f "${FILENAME}" ] && [ -n "${FILENAME##*"update"*}" ]; then
|
if [ -f "${FILENAME}" ] && [ -n "${FILENAME##*"update"*}" ]; then
|
||||||
echo "Trying to flash ${FILENAME}, but first erasing and writing system information"
|
echo "Trying to flash ${FILENAME}, but first erasing and writing system information"
|
||||||
$ESPTOOL_CMD erase_flash
|
$ESPTOOL_CMD erase_flash
|
||||||
$ESPTOOL_CMD write_flash 0x00 "${FILENAME}"
|
$ESPTOOL_CMD write_flash 0x00 ${FILENAME}
|
||||||
# Account for S3 board's different OTA partition
|
# Account for S3 board's different OTA partition
|
||||||
if [ -n "${FILENAME##*"s3"*}" ] && [ -n "${FILENAME##*"-v3"*}" ] && [ -n "${FILENAME##*"t-deck"*}" ] && [ -n "${FILENAME##*"wireless-paper"*}" ] && [ -n "${FILENAME##*"wireless-tracker"*}" ] && [ -n "${FILENAME##*"station-g2"*}" ] && [ -n "${FILENAME##*"unphone"*}" ]; then
|
if [ -n "${FILENAME##*"s3"*}" ] && [ -n "${FILENAME##*"-v3"*}" ] && [ -n "${FILENAME##*"t-deck"*}" ] && [ -n "${FILENAME##*"wireless-paper"*}" ] && [ -n "${FILENAME##*"wireless-tracker"*}" ] && [ -n "${FILENAME##*"station-g2"*}" ] && [ -n "${FILENAME##*"unphone"*}" ]; then
|
||||||
if [ -n "${FILENAME##*"esp32c3"*}" ]; then
|
if [ -n "${FILENAME##*"esp32c3"*}" ]; then
|
||||||
|
|||||||
@@ -35,9 +35,6 @@ for subdir, dirs, files in os.walk(rootdir):
|
|||||||
outlist.append(section)
|
outlist.append(section)
|
||||||
else:
|
else:
|
||||||
outlist.append(section)
|
outlist.append(section)
|
||||||
# Add the TFT variants if the base variant is selected
|
|
||||||
elif section.replace("-tft", "") in outlist and config[config[c].name].get("board_level") != "extra":
|
|
||||||
outlist.append(section)
|
|
||||||
if "board_check" in config[config[c].name]:
|
if "board_check" in config[config[c].name]:
|
||||||
if (config[config[c].name]["board_check"] == "true") & (
|
if (config[config[c].name]["board_check"] == "true") & (
|
||||||
"check" in options
|
"check" in options
|
||||||
|
|||||||
@@ -3,8 +3,6 @@
|
|||||||
# trunk-ignore-all(flake8/F821): For SConstruct imports
|
# trunk-ignore-all(flake8/F821): For SConstruct imports
|
||||||
import sys
|
import sys
|
||||||
from os.path import join
|
from os.path import join
|
||||||
import json
|
|
||||||
import re
|
|
||||||
|
|
||||||
from readprops import readProps
|
from readprops import readProps
|
||||||
|
|
||||||
@@ -92,37 +90,11 @@ prefsLoc = projenv["PROJECT_DIR"] + "/version.properties"
|
|||||||
verObj = readProps(prefsLoc)
|
verObj = readProps(prefsLoc)
|
||||||
print("Using meshtastic platformio-custom.py, firmware version " + verObj["long"] + " on " + env.get("PIOENV"))
|
print("Using meshtastic platformio-custom.py, firmware version " + verObj["long"] + " on " + env.get("PIOENV"))
|
||||||
|
|
||||||
jsonLoc = env["PROJECT_DIR"] + "/userPrefs.jsonc"
|
|
||||||
with open(jsonLoc) as f:
|
|
||||||
jsonStr = re.sub("//.*","", f.read(), flags=re.MULTILINE)
|
|
||||||
userPrefs = json.loads(jsonStr)
|
|
||||||
|
|
||||||
pref_flags = []
|
|
||||||
# Pre-process the userPrefs
|
|
||||||
for pref in userPrefs:
|
|
||||||
if userPrefs[pref].startswith("{"):
|
|
||||||
pref_flags.append("-D" + pref + "=" + userPrefs[pref])
|
|
||||||
elif userPrefs[pref].lstrip("-").replace(".", "").isdigit():
|
|
||||||
pref_flags.append("-D" + pref + "=" + userPrefs[pref])
|
|
||||||
elif userPrefs[pref] == "true" or userPrefs[pref] == "false":
|
|
||||||
pref_flags.append("-D" + pref + "=" + userPrefs[pref])
|
|
||||||
elif userPrefs[pref].startswith("meshtastic_"):
|
|
||||||
pref_flags.append("-D" + pref + "=" + userPrefs[pref])
|
|
||||||
# If the value is a string, we need to wrap it in quotes
|
|
||||||
else:
|
|
||||||
pref_flags.append("-D" + pref + "=" + env.StringifyMacro(userPrefs[pref]) + "")
|
|
||||||
|
|
||||||
# General options that are passed to the C and C++ compilers
|
# General options that are passed to the C and C++ compilers
|
||||||
flags = [
|
projenv.Append(
|
||||||
|
CCFLAGS=[
|
||||||
"-DAPP_VERSION=" + verObj["long"],
|
"-DAPP_VERSION=" + verObj["long"],
|
||||||
"-DAPP_VERSION_SHORT=" + verObj["short"],
|
"-DAPP_VERSION_SHORT=" + verObj["short"],
|
||||||
"-DAPP_ENV=" + env.get("PIOENV"),
|
"-DAPP_ENV=" + env.get("PIOENV"),
|
||||||
] + pref_flags
|
]
|
||||||
|
|
||||||
print ("Using flags:")
|
|
||||||
for flag in flags:
|
|
||||||
print(flag)
|
|
||||||
|
|
||||||
projenv.Append(
|
|
||||||
CCFLAGS=flags,
|
|
||||||
)
|
)
|
||||||
@@ -1,8 +1,6 @@
|
|||||||
import configparser
|
import configparser
|
||||||
import subprocess
|
import subprocess
|
||||||
import os
|
|
||||||
run_number = os.getenv('GITHUB_RUN_NUMBER', '0')
|
|
||||||
build_location = os.getenv('BUILD_LOCATION', 'local')
|
|
||||||
|
|
||||||
def readProps(prefsLoc):
|
def readProps(prefsLoc):
|
||||||
"""Read the version of our project as a string"""
|
"""Read the version of our project as a string"""
|
||||||
@@ -13,7 +11,6 @@ def readProps(prefsLoc):
|
|||||||
verObj = dict(
|
verObj = dict(
|
||||||
short="{}.{}.{}".format(version["major"], version["minor"], version["build"]),
|
short="{}.{}.{}".format(version["major"], version["minor"], version["build"]),
|
||||||
long="unset",
|
long="unset",
|
||||||
deb="unset",
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# Try to find current build SHA if if the workspace is clean. This could fail if git is not installed
|
# Try to find current build SHA if if the workspace is clean. This could fail if git is not installed
|
||||||
@@ -30,13 +27,13 @@ def readProps(prefsLoc):
|
|||||||
# if isDirty:
|
# if isDirty:
|
||||||
# # short for 'dirty', we want to keep our verstrings source for protobuf reasons
|
# # short for 'dirty', we want to keep our verstrings source for protobuf reasons
|
||||||
# suffix = sha + "-d"
|
# suffix = sha + "-d"
|
||||||
verObj["long"] = "{}.{}".format(verObj["short"], suffix)
|
verObj["long"] = "{}.{}.{}.{}".format(
|
||||||
verObj["deb"] = "{}.{}~{}{}".format(verObj["short"], run_number, build_location, sha)
|
version["major"], version["minor"], version["build"], suffix
|
||||||
|
)
|
||||||
except:
|
except:
|
||||||
# print("Unexpected error:", sys.exc_info()[0])
|
# print("Unexpected error:", sys.exc_info()[0])
|
||||||
# traceback.print_exc()
|
# traceback.print_exc()
|
||||||
verObj["long"] = verObj["short"]
|
verObj["long"] = verObj["short"]
|
||||||
verObj["deb"] = "{}.{}~{}".format(verObj["short"], run_number, build_location)
|
|
||||||
|
|
||||||
# print("firmware version " + verStr)
|
# print("firmware version " + verStr)
|
||||||
return verObj
|
return verObj
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
function meshtastic_version {
|
|
||||||
meshtastic_version=$(python3 bin/buildinfo.py short)
|
|
||||||
echo -n "$meshtastic_version"
|
|
||||||
}
|
|
||||||
function git_commits_num {
|
|
||||||
total_commits=$(git rev-list --all --count)
|
|
||||||
echo -n "$total_commits"
|
|
||||||
}
|
|
||||||
function git_commit_sha {
|
|
||||||
commit_sha=$(git rev-parse --short HEAD)
|
|
||||||
echo -n "$commit_sha"
|
|
||||||
}
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
{
|
|
||||||
"build": {
|
|
||||||
"arduino": {
|
|
||||||
"partitions": "default.csv",
|
|
||||||
"memory_type": "qio_qspi"
|
|
||||||
},
|
|
||||||
"core": "esp32",
|
|
||||||
"extra_flags": [
|
|
||||||
"-DARDUINO_ESP32S3_DEV",
|
|
||||||
"-DARDUINO_RUNNING_CORE=1",
|
|
||||||
"-DARDUINO_EVENT_RUNNING_CORE=1",
|
|
||||||
"-DARDUINO_USB_CDC_ON_BOOT=1",
|
|
||||||
"-DBOARD_HAS_PSRAM"
|
|
||||||
],
|
|
||||||
"f_cpu": "240000000L",
|
|
||||||
"f_flash": "80000000L",
|
|
||||||
"flash_mode": "qio",
|
|
||||||
"psram_type": "qio",
|
|
||||||
"hwids": [["0x303A", "0x1001"]],
|
|
||||||
"mcu": "esp32s3",
|
|
||||||
"variant": "esp32s3"
|
|
||||||
},
|
|
||||||
"connectivity": ["wifi", "bluetooth"],
|
|
||||||
"debug": {
|
|
||||||
"default_tool": "esp-builtin",
|
|
||||||
"onboard_tools": ["esp-builtin"],
|
|
||||||
"openocd_target": "esp32s3.cfg"
|
|
||||||
},
|
|
||||||
"frameworks": ["arduino", "espidf"],
|
|
||||||
"platforms": ["espressif32"],
|
|
||||||
"name": "Espressif ESP32-S3-FH4R2 (4 MB QD, 2MB PSRAM)",
|
|
||||||
"upload": {
|
|
||||||
"flash_size": "4MB",
|
|
||||||
"maximum_ram_size": 327680,
|
|
||||||
"maximum_size": 4194304,
|
|
||||||
"require_upload_port": true,
|
|
||||||
"speed": 921600
|
|
||||||
},
|
|
||||||
"url": "https://docs.espressif.com/projects/esp-idf/en/latest/esp32s3/hw-reference/esp32s3/user-guide-devkitc-1.html",
|
|
||||||
"vendor": "Espressif"
|
|
||||||
}
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
{
|
|
||||||
"build": {
|
|
||||||
"arduino": {
|
|
||||||
"ldscript": "esp32s3_out.ld",
|
|
||||||
"partitions": "default_16MB.csv",
|
|
||||||
"memory_type": "qio_qspi"
|
|
||||||
},
|
|
||||||
"core": "esp32",
|
|
||||||
"extra_flags": [
|
|
||||||
"-DBOARD_HAS_PSRAM",
|
|
||||||
"-DARDUINO_USB_CDC_ON_BOOT=1",
|
|
||||||
"-DARDUINO_USB_MODE=0",
|
|
||||||
"-DARDUINO_RUNNING_CORE=1",
|
|
||||||
"-DARDUINO_EVENT_RUNNING_CORE=1"
|
|
||||||
],
|
|
||||||
"f_cpu": "240000000L",
|
|
||||||
"f_flash": "80000000L",
|
|
||||||
"flash_mode": "qio",
|
|
||||||
"hwids": [["0x303A", "0x80D6"]],
|
|
||||||
"mcu": "esp32s3",
|
|
||||||
"variant": "mesh-tab"
|
|
||||||
},
|
|
||||||
"connectivity": ["wifi", "bluetooth", "lora"],
|
|
||||||
"debug": {
|
|
||||||
"default_tool": "esp-builtin",
|
|
||||||
"onboard_tools": ["esp-builtin"],
|
|
||||||
"openocd_target": "esp32s3.cfg"
|
|
||||||
},
|
|
||||||
"frameworks": ["arduino", "espidf"],
|
|
||||||
"name": "ESP32-S3 WROOM-1 N16R2 (16 MB FLASH, 2 MB PSRAM)",
|
|
||||||
"upload": {
|
|
||||||
"flash_size": "16MB",
|
|
||||||
"maximum_ram_size": 327680,
|
|
||||||
"maximum_size": 16777216,
|
|
||||||
"use_1200bps_touch": true,
|
|
||||||
"wait_for_upload_port": true,
|
|
||||||
"require_upload_port": true,
|
|
||||||
"speed": 460800
|
|
||||||
},
|
|
||||||
"url": "https://github.com/valzzu/Mesh-Tab",
|
|
||||||
"vendor": "Espressif"
|
|
||||||
}
|
|
||||||
@@ -15,12 +15,10 @@
|
|||||||
],
|
],
|
||||||
"f_cpu": "240000000L",
|
"f_cpu": "240000000L",
|
||||||
"f_flash": "80000000L",
|
"f_flash": "80000000L",
|
||||||
"f_boot": "120000000L",
|
|
||||||
"boot": "qio",
|
|
||||||
"flash_mode": "qio",
|
"flash_mode": "qio",
|
||||||
"hwids": [["0x1A86", "0x7523"]],
|
"hwids": [["0x1A86", "0x7523"]],
|
||||||
"mcu": "esp32s3",
|
"mcu": "esp32s3",
|
||||||
"variant": "esp32s3"
|
"variant": "esp32s3r8"
|
||||||
},
|
},
|
||||||
"connectivity": ["wifi", "bluetooth", "lora"],
|
"connectivity": ["wifi", "bluetooth", "lora"],
|
||||||
"debug": {
|
"debug": {
|
||||||
@@ -34,9 +32,9 @@
|
|||||||
"flash_size": "8MB",
|
"flash_size": "8MB",
|
||||||
"maximum_ram_size": 327680,
|
"maximum_ram_size": 327680,
|
||||||
"maximum_size": 8388608,
|
"maximum_size": 8388608,
|
||||||
"require_upload_port": false,
|
"require_upload_port": true,
|
||||||
"use_1200bps_touch": true,
|
"use_1200bps_touch": true,
|
||||||
"wait_for_upload_port": false,
|
"wait_for_upload_port": true,
|
||||||
"speed": 921600
|
"speed": 921600
|
||||||
},
|
},
|
||||||
"url": "https://www.seeedstudio.com/Indicator-for-Meshtastic.html",
|
"url": "https://www.seeedstudio.com/Indicator-for-Meshtastic.html",
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
"-DARDUINO_USB_CDC_ON_BOOT=1",
|
"-DARDUINO_USB_CDC_ON_BOOT=1",
|
||||||
"-DARDUINO_USB_MODE=0",
|
"-DARDUINO_USB_MODE=0",
|
||||||
"-DARDUINO_RUNNING_CORE=1",
|
"-DARDUINO_RUNNING_CORE=1",
|
||||||
"-DARDUINO_EVENT_RUNNING_CORE=1"
|
"-DARDUINO_EVENT_RUNNING_CORE=0"
|
||||||
],
|
],
|
||||||
"f_cpu": "240000000L",
|
"f_cpu": "240000000L",
|
||||||
"f_flash": "80000000L",
|
"f_flash": "80000000L",
|
||||||
|
|||||||
@@ -48,6 +48,6 @@
|
|||||||
"require_upload_port": true,
|
"require_upload_port": true,
|
||||||
"wait_for_upload_port": true
|
"wait_for_upload_port": true
|
||||||
},
|
},
|
||||||
"url": "https://lilygo.cc/products/t-echo-lilygo",
|
"url": "FIXME",
|
||||||
"vendor": "LILYGO"
|
"vendor": "TTGO"
|
||||||
}
|
}
|
||||||
|
|||||||
45
boards/wiscore_rak11720.json
Normal file
45
boards/wiscore_rak11720.json
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
{
|
||||||
|
"build": {
|
||||||
|
"cpu": "cortex-m4",
|
||||||
|
"f_cpu": "48000000L",
|
||||||
|
"mcu": "AMA3B1KK",
|
||||||
|
"part": "apollo3",
|
||||||
|
"fabi": "hard",
|
||||||
|
"specs": "nosys.specs",
|
||||||
|
"framework": {
|
||||||
|
"arduino": {
|
||||||
|
"v1": {
|
||||||
|
"variant": "artemis",
|
||||||
|
"extra_flags": "-DSFE_ARTEMIS"
|
||||||
|
},
|
||||||
|
"v2": {
|
||||||
|
"variant": "rak11720",
|
||||||
|
"extra_flags": "-DARDUINO_RAK_11720_MODULE"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ambiqsdk-sfe": {
|
||||||
|
"variant": ["boards_sfe", "artemis_module"],
|
||||||
|
"extra_flags": "",
|
||||||
|
"variant_lib_src_filter": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"debug": {
|
||||||
|
"jlink_device": "AMA3B1KK-KBR",
|
||||||
|
"svd_path": "apollo3.svd",
|
||||||
|
"swo_freq": 12000000,
|
||||||
|
"init": {
|
||||||
|
"break": "tbreak setup"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": ["arduino", "ambiqsdk-sfe"],
|
||||||
|
"name": "WisCore RAK11720 Board",
|
||||||
|
"upload": {
|
||||||
|
"maximum_ram_size": 393216,
|
||||||
|
"maximum_size": 983040,
|
||||||
|
"protocol": "svl",
|
||||||
|
"protocols": ["svl", "asb", "jlink"]
|
||||||
|
},
|
||||||
|
"url": "https://www.rakwireless.com",
|
||||||
|
"vendor": "RAKwireless"
|
||||||
|
}
|
||||||
6
debian/.gitignore
vendored
6
debian/.gitignore
vendored
@@ -1,6 +0,0 @@
|
|||||||
.debhelper
|
|
||||||
debhelper-build-stamp
|
|
||||||
meshtasticd
|
|
||||||
files
|
|
||||||
meshtasticd.substvars
|
|
||||||
meshtasticd.postrm.debhelper
|
|
||||||
9
debian/changelog
vendored
9
debian/changelog
vendored
@@ -1,9 +0,0 @@
|
|||||||
meshtasticd (2.5.22.0) UNRELEASED; urgency=medium
|
|
||||||
|
|
||||||
* Initial packaging
|
|
||||||
* GitHub Actions Automatic version bump
|
|
||||||
* GitHub Actions Automatic version bump
|
|
||||||
* GitHub Actions Automatic version bump
|
|
||||||
* GitHub Actions Automatic version bump
|
|
||||||
|
|
||||||
-- Austin Lane <github-actions[bot]@users.noreply.github.com> Wed, 05 Feb 2025 01:10:33 +0000
|
|
||||||
7
debian/ci_changelog.sh
vendored
7
debian/ci_changelog.sh
vendored
@@ -1,7 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
export DEBEMAIL="github-actions[bot]@users.noreply.github.com"
|
|
||||||
PKG_VERSION=$(python3 bin/buildinfo.py short)
|
|
||||||
|
|
||||||
dch --newversion "$PKG_VERSION.0" \
|
|
||||||
--distribution UNRELEASED \
|
|
||||||
"GitHub Actions Automatic version bump"
|
|
||||||
23
debian/ci_pack_sdeb.sh
vendored
23
debian/ci_pack_sdeb.sh
vendored
@@ -1,23 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
export DEBEMAIL="jbennett@incomsystems.biz"
|
|
||||||
export PLATFORMIO_LIBDEPS_DIR=pio/libdeps
|
|
||||||
export PLATFORMIO_PACKAGES_DIR=pio/packages
|
|
||||||
export PLATFORMIO_CORE_DIR=pio/core
|
|
||||||
|
|
||||||
# Download libraries to `pio`
|
|
||||||
platformio pkg install -e native
|
|
||||||
platformio pkg install -e native -t platformio/tool-scons@4.40502.0
|
|
||||||
# Compress `pio` directory to prevent dh_clean from sanitizing it
|
|
||||||
tar -cf pio.tar pio/
|
|
||||||
rm -rf pio
|
|
||||||
# Download the latest meshtastic/web release build.tar to `web.tar`
|
|
||||||
curl -L https://github.com/meshtastic/web/releases/latest/download/build.tar -o web.tar
|
|
||||||
|
|
||||||
package=$(dpkg-parsechangelog --show-field Source)
|
|
||||||
|
|
||||||
rm -rf debian/changelog
|
|
||||||
dch --create --distribution "$SERIES" --package "$package" --newversion "$PKG_VERSION~$SERIES" \
|
|
||||||
"GitHub Actions Automatic packaging for $PKG_VERSION~$SERIES"
|
|
||||||
|
|
||||||
# Build the source deb
|
|
||||||
debuild -S -nc -k"$GPG_KEY_ID"
|
|
||||||
32
debian/control
vendored
32
debian/control
vendored
@@ -1,32 +0,0 @@
|
|||||||
Source: meshtasticd
|
|
||||||
Section: misc
|
|
||||||
Priority: optional
|
|
||||||
Maintainer: Austin Lane <vidplace7@gmail.com>
|
|
||||||
Build-Depends: debhelper-compat (= 13),
|
|
||||||
tar,
|
|
||||||
gzip,
|
|
||||||
platformio,
|
|
||||||
python3-protobuf,
|
|
||||||
python3-grpcio,
|
|
||||||
git,
|
|
||||||
g++,
|
|
||||||
pkg-config,
|
|
||||||
libyaml-cpp-dev,
|
|
||||||
libgpiod-dev,
|
|
||||||
libbluetooth-dev,
|
|
||||||
libusb-1.0-0-dev,
|
|
||||||
libi2c-dev,
|
|
||||||
openssl,
|
|
||||||
libssl-dev,
|
|
||||||
libulfius-dev,
|
|
||||||
liborcania-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.
|
|
||||||
5
debian/meshtasticd.dirs
vendored
5
debian/meshtasticd.dirs
vendored
@@ -1,5 +0,0 @@
|
|||||||
etc/meshtasticd
|
|
||||||
etc/meshtasticd/config.d
|
|
||||||
etc/meshtasticd/available.d
|
|
||||||
usr/share/meshtasticd/web
|
|
||||||
etc/meshtasticd/ssl
|
|
||||||
8
debian/meshtasticd.install
vendored
8
debian/meshtasticd.install
vendored
@@ -1,8 +0,0 @@
|
|||||||
.pio/build/native/meshtasticd usr/sbin
|
|
||||||
|
|
||||||
bin/config.yaml etc/meshtasticd
|
|
||||||
bin/config.d/* etc/meshtasticd/available.d
|
|
||||||
|
|
||||||
bin/meshtasticd.service lib/systemd/system
|
|
||||||
|
|
||||||
web/* usr/share/meshtasticd/web
|
|
||||||
23
debian/rules
vendored
23
debian/rules
vendored
@@ -1,23 +0,0 @@
|
|||||||
#!/usr/bin/make -f
|
|
||||||
# export DH_VERBOSE = 1
|
|
||||||
|
|
||||||
# Use the "dh" sequencer
|
|
||||||
%:
|
|
||||||
dh $@
|
|
||||||
|
|
||||||
# https://docs.platformio.org/en/latest/envvars.html
|
|
||||||
PIO_ENV:=\
|
|
||||||
PLATFORMIO_CORE_DIR=pio/core \
|
|
||||||
PLATFORMIO_LIBDEPS_DIR=pio/libdeps \
|
|
||||||
PLATFORMIO_PACKAGES_DIR=pio/packages
|
|
||||||
|
|
||||||
override_dh_auto_build:
|
|
||||||
# Extract tarballs within source deb
|
|
||||||
tar -xf pio.tar
|
|
||||||
mkdir -p web && tar -xf web.tar -C web
|
|
||||||
gunzip web/ -r
|
|
||||||
# Build with platformio
|
|
||||||
$(PIO_ENV) platformio run -e native
|
|
||||||
# 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
|
|
||||||
1
debian/source/format
vendored
1
debian/source/format
vendored
@@ -1 +0,0 @@
|
|||||||
3.0 (native)
|
|
||||||
2
debian/source/include-binaries
vendored
2
debian/source/include-binaries
vendored
@@ -1,2 +0,0 @@
|
|||||||
pio.tar
|
|
||||||
web.tar
|
|
||||||
1
debian/source/options
vendored
1
debian/source/options
vendored
@@ -1 +0,0 @@
|
|||||||
extend-diff-ignore = "\.pio"
|
|
||||||
@@ -1,26 +1,13 @@
|
|||||||
# USB-Based Meshtastic container-node!
|
version: "3.7"
|
||||||
|
|
||||||
# Copy .env.example to .env and set the USB_DEVICE and CONFIG_PATH variables
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
meshtastic-node:
|
meshtastic-node:
|
||||||
build: .
|
build: .
|
||||||
container_name: meshtasticd
|
deploy:
|
||||||
|
mode: replicated
|
||||||
|
replicas: 4
|
||||||
|
networks:
|
||||||
|
- mesh
|
||||||
|
|
||||||
# Pass USB device through to the container
|
networks:
|
||||||
devices:
|
mesh:
|
||||||
- "${USB_DEVICE}"
|
|
||||||
|
|
||||||
# Mount local config file and named volume for data persistence
|
|
||||||
volumes:
|
|
||||||
- "${CONFIG_PATH}:/etc/meshtasticd/config.yaml:ro"
|
|
||||||
- meshtastic_data:/var/lib/meshtasticd
|
|
||||||
|
|
||||||
# Forward the container’s port 4403 to the host
|
|
||||||
ports:
|
|
||||||
- 4403:4403
|
|
||||||
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
meshtastic_data:
|
|
||||||
|
|||||||
Submodule lib/device-ui deleted from eb37529599
@@ -1,94 +0,0 @@
|
|||||||
# meshtasticd spec file for RPM-based distributions
|
|
||||||
#
|
|
||||||
# Build locally with:
|
|
||||||
# ```
|
|
||||||
# sudo dnf install rpkg-util
|
|
||||||
# rpkg local
|
|
||||||
# ```
|
|
||||||
#
|
|
||||||
# See:
|
|
||||||
# - https://docs.pagure.org/rpkg-util/v3/index.html
|
|
||||||
# - https://docs.fedoraproject.org/en-US/packaging-guidelines/Versioning/
|
|
||||||
|
|
||||||
Name: meshtasticd
|
|
||||||
# Version Ex: 2.5.19
|
|
||||||
Version: {{{ meshtastic_version }}}
|
|
||||||
# Release Ex: 9127.daily.gitd7f5f620.fc41
|
|
||||||
Release: {{{ git_commits_num }}}%{?copr_projectname:.%{copr_projectname}}.git{{{ git_commit_sha }}}%{?dist}
|
|
||||||
VCS: {{{ git_dir_vcs }}}
|
|
||||||
Summary: Meshtastic daemon for communicating with Meshtastic devices
|
|
||||||
|
|
||||||
License: GPL-3.0
|
|
||||||
URL: https://github.com/meshtastic/firmware
|
|
||||||
Source0: {{{ git_dir_pack }}}
|
|
||||||
Source1: https://github.com/meshtastic/web/releases/latest/download/build.tar
|
|
||||||
|
|
||||||
BuildRequires: systemd-rpm-macros
|
|
||||||
BuildRequires: python3-devel
|
|
||||||
BuildRequires: platformio
|
|
||||||
BuildRequires: python3dist(protobuf)
|
|
||||||
BuildRequires: python3dist(grpcio[protobuf])
|
|
||||||
BuildRequires: python3dist(grpcio-tools)
|
|
||||||
BuildRequires: git-core
|
|
||||||
BuildRequires: gcc-c++
|
|
||||||
BuildRequires: pkgconfig(yaml-cpp)
|
|
||||||
BuildRequires: pkgconfig(libgpiod)
|
|
||||||
BuildRequires: pkgconfig(bluez)
|
|
||||||
BuildRequires: pkgconfig(libusb-1.0)
|
|
||||||
BuildRequires: libi2c-devel
|
|
||||||
# Web components:
|
|
||||||
BuildRequires: pkgconfig(openssl)
|
|
||||||
BuildRequires: pkgconfig(liborcania)
|
|
||||||
BuildRequires: pkgconfig(libyder)
|
|
||||||
BuildRequires: pkgconfig(libulfius)
|
|
||||||
|
|
||||||
%description
|
|
||||||
Meshtastic daemon for controlling Meshtastic devices. Meshtastic is an off-grid
|
|
||||||
text communication platform that uses inexpensive LoRa radios.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
{{{ git_dir_setup_macro }}}
|
|
||||||
# Unpack the web files
|
|
||||||
mkdir -p web
|
|
||||||
tar -xf %{SOURCE1} -C web
|
|
||||||
gzip -dr web
|
|
||||||
|
|
||||||
%build
|
|
||||||
# Use the “native” environment from platformio to build a Linux binary
|
|
||||||
platformio run -e native
|
|
||||||
|
|
||||||
%install
|
|
||||||
mkdir -p %{buildroot}%{_sbindir}
|
|
||||||
install -m 0755 .pio/build/native/program %{buildroot}%{_sbindir}/meshtasticd
|
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{_sysconfdir}/meshtasticd
|
|
||||||
install -m 0644 bin/config-dist.yaml %{buildroot}%{_sysconfdir}/meshtasticd/config.yaml
|
|
||||||
mkdir -p %{buildroot}%{_sysconfdir}/meshtasticd/config.d
|
|
||||||
mkdir -p %{buildroot}%{_sysconfdir}/meshtasticd/available.d
|
|
||||||
cp -r bin/config.d/* %{buildroot}%{_sysconfdir}/meshtasticd/available.d
|
|
||||||
|
|
||||||
install -D -m 0644 bin/meshtasticd.service %{buildroot}%{_unitdir}/meshtasticd.service
|
|
||||||
|
|
||||||
# Install the web files under /usr/share/meshtasticd/web
|
|
||||||
mkdir -p %{buildroot}%{_datadir}/meshtasticd/web
|
|
||||||
cp -r web/* %{buildroot}%{_datadir}/meshtasticd/web
|
|
||||||
# Install default SSL storage directory (for web)
|
|
||||||
mkdir -p %{buildroot}%{_sysconfdir}/meshtasticd/ssl
|
|
||||||
|
|
||||||
%files
|
|
||||||
%license LICENSE
|
|
||||||
%doc README.md
|
|
||||||
%{_sbindir}/meshtasticd
|
|
||||||
%dir %{_sysconfdir}/meshtasticd
|
|
||||||
%dir %{_sysconfdir}/meshtasticd/config.d
|
|
||||||
%dir %{_sysconfdir}/meshtasticd/available.d
|
|
||||||
%config(noreplace) %{_sysconfdir}/meshtasticd/config.yaml
|
|
||||||
%config %{_sysconfdir}/meshtasticd/available.d/*
|
|
||||||
%{_unitdir}/meshtasticd.service
|
|
||||||
%dir %{_datadir}/meshtasticd
|
|
||||||
%dir %{_datadir}/meshtasticd/web
|
|
||||||
%{_datadir}/meshtasticd/web/*
|
|
||||||
%dir %{_sysconfdir}/meshtasticd/ssl
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
%autochangelog
|
|
||||||
@@ -3,7 +3,42 @@
|
|||||||
|
|
||||||
[platformio]
|
[platformio]
|
||||||
default_envs = tbeam
|
default_envs = tbeam
|
||||||
|
;default_envs = pico
|
||||||
|
;default_envs = tbeam-s3-core
|
||||||
|
;default_envs = tbeam0.7
|
||||||
|
;default_envs = heltec-v1
|
||||||
|
;default_envs = heltec-v2_0
|
||||||
|
;default_envs = heltec-v2_1
|
||||||
|
;default_envs = heltec-wireless-tracker
|
||||||
|
;default_envs = chatter2
|
||||||
|
;default_envs = tlora-v1
|
||||||
|
;default_envs = tlora_v1_3
|
||||||
|
;default_envs = tlora-v2
|
||||||
|
;default_envs = tlora-v2-1-1_6
|
||||||
|
;default_envs = tlora-v2-1-1_6-tcxo
|
||||||
|
;default_envs = tlora-t3s3-v1
|
||||||
|
;default_envs = t-echo
|
||||||
|
;default_envs = canaryone
|
||||||
|
;default_envs = native
|
||||||
|
;default_envs = nano-g1
|
||||||
|
;default_envs = pca10059_diy_eink
|
||||||
|
;default_envs = meshtastic-diy-v1
|
||||||
|
;default_envs = meshtastic-diy-v1_1
|
||||||
|
;default_envs = meshtastic-dr-dev
|
||||||
|
;default_envs = m5stack-coreink
|
||||||
|
;default_envs = rak4631
|
||||||
|
;default_envs = rak4631_eth_gw
|
||||||
|
;default_envs = rak2560
|
||||||
|
;default_envs = rak_wismeshtap
|
||||||
|
;default_envs = wio-e5
|
||||||
|
;default_envs = radiomaster_900_bandit_nano
|
||||||
|
;default_envs = radiomaster_900_bandit_micro
|
||||||
|
;default_envs = radiomaster_900_bandit
|
||||||
|
;default_envs = heltec_capsule_sensor_v3
|
||||||
|
;default_envs = heltec_vision_master_t190
|
||||||
|
;default_envs = heltec_vision_master_e213
|
||||||
|
;default_envs = heltec_vision_master_e290
|
||||||
|
;default_envs = heltec_mesh_node_t114
|
||||||
extra_configs =
|
extra_configs =
|
||||||
arch/*/*.ini
|
arch/*/*.ini
|
||||||
variants/*/platformio.ini
|
variants/*/platformio.ini
|
||||||
@@ -20,7 +55,7 @@ extra_scripts = bin/platformio-custom.py
|
|||||||
build_flags = -Wno-missing-field-initializers
|
build_flags = -Wno-missing-field-initializers
|
||||||
|
|
||||||
-Wno-format
|
-Wno-format
|
||||||
-Isrc -Isrc/mesh -Isrc/mesh/generated -Isrc/gps -Isrc/buzz -Wl,-Map,"${platformio.build_dir}"/output.map
|
-Isrc -Isrc/mesh -Isrc/mesh/generated -Isrc/gps -Isrc/buzz -Wl,-Map,.pio/build/output.map
|
||||||
-DUSE_THREAD_NAMES
|
-DUSE_THREAD_NAMES
|
||||||
-DTINYGPS_OPTION_NO_CUSTOM_FIELDS
|
-DTINYGPS_OPTION_NO_CUSTOM_FIELDS
|
||||||
-DPB_ENABLE_MALLOC=1
|
-DPB_ENABLE_MALLOC=1
|
||||||
@@ -46,10 +81,9 @@ build_flags = -Wno-missing-field-initializers
|
|||||||
-DRADIOLIB_EXCLUDE_LORAWAN=1
|
-DRADIOLIB_EXCLUDE_LORAWAN=1
|
||||||
-DMESHTASTIC_EXCLUDE_DROPZONE=1
|
-DMESHTASTIC_EXCLUDE_DROPZONE=1
|
||||||
-DMESHTASTIC_EXCLUDE_REMOTEHARDWARE=1
|
-DMESHTASTIC_EXCLUDE_REMOTEHARDWARE=1
|
||||||
-DMESHTASTIC_EXCLUDE_HEALTH_TELEMETRY=1
|
-DMESHTASTIC_EXCLUDE_POWERSTRESS=1 ; exclude power stress test module from main firmware
|
||||||
-DMESHTASTIC_EXCLUDE_POWERSTRESS=1 ; exclude power stress test module from main firmware
|
|
||||||
#-DBUILD_EPOCH=$UNIX_TIME
|
#-DBUILD_EPOCH=$UNIX_TIME
|
||||||
#-D OLED_PL=1
|
;-D OLED_PL
|
||||||
|
|
||||||
monitor_speed = 115200
|
monitor_speed = 115200
|
||||||
monitor_filters = direct
|
monitor_filters = direct
|
||||||
@@ -76,6 +110,7 @@ framework = arduino
|
|||||||
lib_deps =
|
lib_deps =
|
||||||
${env.lib_deps}
|
${env.lib_deps}
|
||||||
end2endzone/NonBlockingRTTTL@1.3.0
|
end2endzone/NonBlockingRTTTL@1.3.0
|
||||||
|
https://github.com/meshtastic/SparkFun_ATECCX08a_Arduino_Library.git#5cf62b36c6f30bc72a07bdb2c11fc9a22d1e31da
|
||||||
build_flags = ${env.build_flags} -Os
|
build_flags = ${env.build_flags} -Os
|
||||||
build_src_filter = ${env.build_src_filter} -<platform/portduino/>
|
build_src_filter = ${env.build_src_filter} -<platform/portduino/>
|
||||||
|
|
||||||
@@ -88,7 +123,7 @@ lib_deps =
|
|||||||
|
|
||||||
[radiolib_base]
|
[radiolib_base]
|
||||||
lib_deps =
|
lib_deps =
|
||||||
jgromes/RadioLib@7.1.2
|
jgromes/RadioLib@7.1.0
|
||||||
|
|
||||||
; Common libs for environmental measurements in telemetry module
|
; Common libs for environmental measurements in telemetry module
|
||||||
; (not included in native / portduino)
|
; (not included in native / portduino)
|
||||||
@@ -119,6 +154,7 @@ lib_deps =
|
|||||||
sparkfun/SparkFun 9DoF IMU Breakout - ICM 20948 - Arduino Library@1.2.13
|
sparkfun/SparkFun 9DoF IMU Breakout - ICM 20948 - Arduino Library@1.2.13
|
||||||
ClosedCube OPT3001@1.1.2
|
ClosedCube OPT3001@1.1.2
|
||||||
emotibit/EmotiBit MLX90632@1.0.8
|
emotibit/EmotiBit MLX90632@1.0.8
|
||||||
|
sparkfun/SparkFun MAX3010x Pulse and Proximity Sensor Library@1.1.2
|
||||||
adafruit/Adafruit MLX90614 Library@2.1.5
|
adafruit/Adafruit MLX90614 Library@2.1.5
|
||||||
https://github.com/boschsensortec/Bosch-BSEC2-Library#v1.7.2502
|
https://github.com/boschsensortec/Bosch-BSEC2-Library#v1.7.2502
|
||||||
boschsensortec/BME68x Sensor Library@1.1.40407
|
boschsensortec/BME68x Sensor Library@1.1.40407
|
||||||
@@ -126,8 +162,3 @@ lib_deps =
|
|||||||
mprograms/QMC5883LCompass@1.2.3
|
mprograms/QMC5883LCompass@1.2.3
|
||||||
dfrobot/DFRobot_RTU@1.0.3
|
dfrobot/DFRobot_RTU@1.0.3
|
||||||
https://github.com/meshtastic/DFRobot_LarkWeatherStation#4de3a9cadef0f6a5220a8a906cf9775b02b0040d
|
https://github.com/meshtastic/DFRobot_LarkWeatherStation#4de3a9cadef0f6a5220a8a906cf9775b02b0040d
|
||||||
https://github.com/DFRobot/DFRobot_RainfallSensor#38fea5e02b40a5430be6dab39a99a6f6347d667e
|
|
||||||
robtillaart/INA226@0.6.0
|
|
||||||
|
|
||||||
; Health Sensor Libraries
|
|
||||||
sparkfun/SparkFun MAX3010x Pulse and Proximity Sensor Library@1.1.2
|
|
||||||
|
|||||||
Submodule protobufs updated: 1095754e1f...c952f8a4c1
@@ -1,5 +1,5 @@
|
|||||||
#include "ButtonThread.h"
|
#include "ButtonThread.h"
|
||||||
|
#include "../userPrefs.h"
|
||||||
#include "configuration.h"
|
#include "configuration.h"
|
||||||
#if !MESHTASTIC_EXCLUDE_GPS
|
#if !MESHTASTIC_EXCLUDE_GPS
|
||||||
#include "GPS.h"
|
#include "GPS.h"
|
||||||
@@ -190,20 +190,6 @@ int32_t ButtonThread::runOnce()
|
|||||||
case 4:
|
case 4:
|
||||||
digitalWrite(PIN_EINK_EN, digitalRead(PIN_EINK_EN) == LOW);
|
digitalWrite(PIN_EINK_EN, digitalRead(PIN_EINK_EN) == LOW);
|
||||||
break;
|
break;
|
||||||
#endif
|
|
||||||
#if defined(RAK_4631)
|
|
||||||
// 5 clicks: start accelerometer/magenetometer calibration for 30 seconds
|
|
||||||
case 5:
|
|
||||||
if (accelerometerThread) {
|
|
||||||
accelerometerThread->calibrate(30);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
// 6 clicks: start accelerometer/magenetometer calibration for 60 seconds
|
|
||||||
case 6:
|
|
||||||
if (accelerometerThread) {
|
|
||||||
accelerometerThread->calibrate(60);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
#endif
|
#endif
|
||||||
// No valid multipress action
|
// No valid multipress action
|
||||||
default:
|
default:
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
#define LOG_CRIT(...) SEGGER_RTT_printf(0, __VA_ARGS__)
|
#define LOG_CRIT(...) SEGGER_RTT_printf(0, __VA_ARGS__)
|
||||||
#define LOG_TRACE(...) SEGGER_RTT_printf(0, __VA_ARGS__)
|
#define LOG_TRACE(...) SEGGER_RTT_printf(0, __VA_ARGS__)
|
||||||
#else
|
#else
|
||||||
#if defined(DEBUG_PORT) && !defined(DEBUG_MUTE)
|
#if defined(DEBUG_PORT) && !defined(DEBUG_MUTE) && !defined(PIO_UNIT_TESTING)
|
||||||
#define LOG_DEBUG(...) DEBUG_PORT.log(MESHTASTIC_LOG_LEVEL_DEBUG, __VA_ARGS__)
|
#define LOG_DEBUG(...) DEBUG_PORT.log(MESHTASTIC_LOG_LEVEL_DEBUG, __VA_ARGS__)
|
||||||
#define LOG_INFO(...) DEBUG_PORT.log(MESHTASTIC_LOG_LEVEL_INFO, __VA_ARGS__)
|
#define LOG_INFO(...) DEBUG_PORT.log(MESHTASTIC_LOG_LEVEL_INFO, __VA_ARGS__)
|
||||||
#define LOG_WARN(...) DEBUG_PORT.log(MESHTASTIC_LOG_LEVEL_WARN, __VA_ARGS__)
|
#define LOG_WARN(...) DEBUG_PORT.log(MESHTASTIC_LOG_LEVEL_WARN, __VA_ARGS__)
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#include "FSCommon.h"
|
#include "FSCommon.h"
|
||||||
#include "SPILock.h"
|
|
||||||
#include "configuration.h"
|
#include "configuration.h"
|
||||||
|
|
||||||
#ifdef HAS_SDCARD
|
#ifdef HAS_SDCARD
|
||||||
@@ -23,17 +22,18 @@ SPIClass SPI1(HSPI);
|
|||||||
#define SDHandler SPI
|
#define SDHandler SPI
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef SD_SPI_FREQUENCY
|
|
||||||
#define SD_SPI_FREQUENCY 4000000U
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // HAS_SDCARD
|
#endif // HAS_SDCARD
|
||||||
|
|
||||||
#if defined(ARCH_STM32WL)
|
#if defined(ARCH_APOLLO3)
|
||||||
|
// Apollo series 2 Kbytes (8 rows of 256 bytes)
|
||||||
|
|
||||||
uint16_t OSFS::startOfEEPROM = 1;
|
uint16_t OSFS::startOfEEPROM = 1;
|
||||||
uint16_t OSFS::endOfEEPROM = 2048;
|
uint16_t OSFS::endOfEEPROM = 2048;
|
||||||
|
|
||||||
|
// Useful consts
|
||||||
|
const OSFS::result noerr = OSFS::result::NO_ERROR;
|
||||||
|
const OSFS::result notfound = OSFS::result::FILE_NOT_FOUND;
|
||||||
|
|
||||||
// 3) How do I read from the medium?
|
// 3) How do I read from the medium?
|
||||||
void OSFS::readNBytes(uint16_t address, unsigned int num, byte *output)
|
void OSFS::readNBytes(uint16_t address, unsigned int num, byte *output)
|
||||||
{
|
{
|
||||||
@@ -53,6 +53,15 @@ void OSFS::writeNBytes(uint16_t address, unsigned int num, const byte *input)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
bool lfs_assert_failed =
|
||||||
|
false; // Note: we use this global on all platforms, though it can only be set true on nrf52 (in our modified lfs_util.h)
|
||||||
|
|
||||||
|
extern "C" void lfs_assert(const char *reason)
|
||||||
|
{
|
||||||
|
LOG_ERROR("LFS assert: %s", reason);
|
||||||
|
lfs_assert_failed = true;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Copies a file from one location to another.
|
* @brief Copies a file from one location to another.
|
||||||
*
|
*
|
||||||
@@ -62,7 +71,7 @@ void OSFS::writeNBytes(uint16_t address, unsigned int num, const byte *input)
|
|||||||
*/
|
*/
|
||||||
bool copyFile(const char *from, const char *to)
|
bool copyFile(const char *from, const char *to)
|
||||||
{
|
{
|
||||||
#ifdef ARCH_STM32WL
|
#if defined(ARCH_STM32WL) || defined(ARCH_APOLLO3)
|
||||||
unsigned char cbuffer[2048];
|
unsigned char cbuffer[2048];
|
||||||
|
|
||||||
// Var to hold the result of actions
|
// Var to hold the result of actions
|
||||||
@@ -89,8 +98,6 @@ bool copyFile(const char *from, const char *to)
|
|||||||
return true;
|
return true;
|
||||||
|
|
||||||
#elif defined(FSCom)
|
#elif defined(FSCom)
|
||||||
// take SPI Lock
|
|
||||||
concurrency::LockGuard g(spiLock);
|
|
||||||
unsigned char cbuffer[16];
|
unsigned char cbuffer[16];
|
||||||
|
|
||||||
File f1 = FSCom.open(from, FILE_O_READ);
|
File f1 = FSCom.open(from, FILE_O_READ);
|
||||||
@@ -127,30 +134,23 @@ bool copyFile(const char *from, const char *to)
|
|||||||
*/
|
*/
|
||||||
bool renameFile(const char *pathFrom, const char *pathTo)
|
bool renameFile(const char *pathFrom, const char *pathTo)
|
||||||
{
|
{
|
||||||
#ifdef ARCH_STM32WL
|
#if defined(ARCH_STM32WL) || defined(ARCH_APOLLO3)
|
||||||
if (copyFile(pathFrom, pathTo) && (OSFS::deleteFile(pathFrom) == OSFS::result::NO_ERROR)) {
|
if (copyFile(pathFrom, pathTo) && (OSFS::deleteFile(pathFrom) == OSFS::result::NO_ERROR)) {
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
#elif defined(FSCom)
|
#elif defined(FSCom)
|
||||||
|
|
||||||
#ifdef ARCH_ESP32
|
#ifdef ARCH_ESP32
|
||||||
// take SPI Lock
|
|
||||||
spiLock->lock();
|
|
||||||
// rename was fixed for ESP32 IDF LittleFS in April
|
// rename was fixed for ESP32 IDF LittleFS in April
|
||||||
bool result = FSCom.rename(pathFrom, pathTo);
|
return FSCom.rename(pathFrom, pathTo);
|
||||||
spiLock->unlock();
|
|
||||||
return result;
|
|
||||||
#else
|
#else
|
||||||
// copyFile does its own locking.
|
|
||||||
if (copyFile(pathFrom, pathTo) && FSCom.remove(pathFrom)) {
|
if (copyFile(pathFrom, pathTo) && FSCom.remove(pathFrom)) {
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -160,7 +160,6 @@ bool renameFile(const char *pathFrom, const char *pathTo)
|
|||||||
* @brief Get the list of files in a directory.
|
* @brief Get the list of files in a directory.
|
||||||
*
|
*
|
||||||
* This function returns a list of files in a directory. The list includes the full path of each file.
|
* This function returns a list of files in a directory. The list includes the full path of each file.
|
||||||
* We can't use SPILOCK here because of recursion. Callers of this function should use SPILOCK.
|
|
||||||
*
|
*
|
||||||
* @param dirname The name of the directory.
|
* @param dirname The name of the directory.
|
||||||
* @param levels The number of levels of subdirectories to list.
|
* @param levels The number of levels of subdirectories to list.
|
||||||
@@ -189,7 +188,7 @@ std::vector<meshtastic_FileInfo> getFiles(const char *dirname, uint8_t levels)
|
|||||||
file.close();
|
file.close();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
meshtastic_FileInfo fileInfo = {"", static_cast<uint32_t>(file.size())};
|
meshtastic_FileInfo fileInfo = {"", file.size()};
|
||||||
#ifdef ARCH_ESP32
|
#ifdef ARCH_ESP32
|
||||||
strcpy(fileInfo.file_name, file.path());
|
strcpy(fileInfo.file_name, file.path());
|
||||||
#else
|
#else
|
||||||
@@ -209,7 +208,6 @@ std::vector<meshtastic_FileInfo> getFiles(const char *dirname, uint8_t levels)
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Lists the contents of a directory.
|
* Lists the contents of a directory.
|
||||||
* We can't use SPILOCK here because of recursion. Callers of this function should use SPILOCK.
|
|
||||||
*
|
*
|
||||||
* @param dirname The name of the directory to list.
|
* @param dirname The name of the directory to list.
|
||||||
* @param levels The number of levels of subdirectories to list.
|
* @param levels The number of levels of subdirectories to list.
|
||||||
@@ -323,27 +321,18 @@ void listDir(const char *dirname, uint8_t levels, bool del)
|
|||||||
void rmDir(const char *dirname)
|
void rmDir(const char *dirname)
|
||||||
{
|
{
|
||||||
#ifdef FSCom
|
#ifdef FSCom
|
||||||
|
|
||||||
#if (defined(ARCH_ESP32) || defined(ARCH_RP2040) || defined(ARCH_PORTDUINO))
|
#if (defined(ARCH_ESP32) || defined(ARCH_RP2040) || defined(ARCH_PORTDUINO))
|
||||||
listDir(dirname, 10, true);
|
listDir(dirname, 10, true);
|
||||||
#elif defined(ARCH_NRF52)
|
#elif defined(ARCH_NRF52)
|
||||||
// nRF52 implementation of LittleFS has a recursive delete function
|
// nRF52 implementation of LittleFS has a recursive delete function
|
||||||
FSCom.rmdir_r(dirname);
|
FSCom.rmdir_r(dirname);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Some platforms (nrf52) might need to do an extra step before FSBegin().
|
|
||||||
*/
|
|
||||||
__attribute__((weak, noinline)) void preFSBegin() {}
|
|
||||||
|
|
||||||
void fsInit()
|
void fsInit()
|
||||||
{
|
{
|
||||||
#ifdef FSCom
|
#ifdef FSCom
|
||||||
concurrency::LockGuard g(spiLock);
|
|
||||||
preFSBegin();
|
|
||||||
if (!FSBegin()) {
|
if (!FSBegin()) {
|
||||||
LOG_ERROR("Filesystem mount failed");
|
LOG_ERROR("Filesystem mount failed");
|
||||||
// assert(0); This auto-formats the partition, so no need to fail here.
|
// assert(0); This auto-formats the partition, so no need to fail here.
|
||||||
@@ -363,9 +352,9 @@ void fsInit()
|
|||||||
void setupSDCard()
|
void setupSDCard()
|
||||||
{
|
{
|
||||||
#ifdef HAS_SDCARD
|
#ifdef HAS_SDCARD
|
||||||
concurrency::LockGuard g(spiLock);
|
|
||||||
SDHandler.begin(SPI_SCK, SPI_MISO, SPI_MOSI);
|
SDHandler.begin(SPI_SCK, SPI_MISO, SPI_MOSI);
|
||||||
if (!SD.begin(SDCARD_CS, SDHandler, SD_SPI_FREQUENCY)) {
|
|
||||||
|
if (!SD.begin(SDCARD_CS, SDHandler)) {
|
||||||
LOG_DEBUG("No SD_MMC card detected");
|
LOG_DEBUG("No SD_MMC card detected");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,6 +24,25 @@ const OSFS::result noerr = OSFS::result::NO_ERROR;
|
|||||||
const OSFS::result notfound = OSFS::result::FILE_NOT_FOUND;
|
const OSFS::result notfound = OSFS::result::FILE_NOT_FOUND;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(ARCH_APOLLO3)
|
||||||
|
// Apollo series 2 Kbytes (8 rows of 256 bytes)
|
||||||
|
#include <EEPROM.h>
|
||||||
|
#include <OSFS.h>
|
||||||
|
|
||||||
|
extern uint16_t OSFS::startOfEEPROM;
|
||||||
|
extern uint16_t OSFS::endOfEEPROM;
|
||||||
|
|
||||||
|
// Useful consts
|
||||||
|
extern const OSFS::result noerr;
|
||||||
|
extern const OSFS::result notfound;
|
||||||
|
|
||||||
|
// 3) How do I read from the medium?
|
||||||
|
void OSFS::readNBytes(uint16_t address, unsigned int num, byte *output);
|
||||||
|
|
||||||
|
// 4) How to I write to the medium?
|
||||||
|
void OSFS::writeNBytes(uint16_t address, unsigned int num, const byte *input);
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(ARCH_RP2040)
|
#if defined(ARCH_RP2040)
|
||||||
// RP2040
|
// RP2040
|
||||||
#include "LittleFS.h"
|
#include "LittleFS.h"
|
||||||
@@ -58,3 +77,6 @@ std::vector<meshtastic_FileInfo> getFiles(const char *dirname, uint8_t levels);
|
|||||||
void listDir(const char *dirname, uint8_t levels, bool del = false);
|
void listDir(const char *dirname, uint8_t levels, bool del = false);
|
||||||
void rmDir(const char *dirname);
|
void rmDir(const char *dirname);
|
||||||
void setupSDCard();
|
void setupSDCard();
|
||||||
|
|
||||||
|
extern bool lfs_assert_failed; // Note: we use this global on all platforms, though it can only be set true on nrf52 (in our
|
||||||
|
// modified lfs_util.h)
|
||||||
|
|||||||
@@ -72,9 +72,8 @@ static const uint8_t ext_chrg_detect_value = EXT_CHRG_DETECT_VALUE;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if HAS_TELEMETRY && !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR && !defined(ARCH_PORTDUINO)
|
#if HAS_TELEMETRY && !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR && !defined(ARCH_PORTDUINO)
|
||||||
INA219Sensor ina219Sensor;
|
|
||||||
INA226Sensor ina226Sensor;
|
|
||||||
INA260Sensor ina260Sensor;
|
INA260Sensor ina260Sensor;
|
||||||
|
INA219Sensor ina219Sensor;
|
||||||
INA3221Sensor ina3221Sensor;
|
INA3221Sensor ina3221Sensor;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -87,7 +86,7 @@ MAX17048Sensor max17048Sensor;
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if HAS_TELEMETRY && !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR && HAS_RAKPROT && !defined(ARCH_PORTDUINO)
|
#if HAS_RAKPROT && !defined(ARCH_PORTDUINO)
|
||||||
RAK9154Sensor rak9154Sensor;
|
RAK9154Sensor rak9154Sensor;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -243,8 +242,7 @@ class AnalogBatteryLevel : public HasBatteryLevel
|
|||||||
virtual uint16_t getBattVoltage() override
|
virtual uint16_t getBattVoltage() override
|
||||||
{
|
{
|
||||||
|
|
||||||
#if HAS_TELEMETRY && defined(HAS_RAKPROT) && !defined(ARCH_PORTDUINO) && !defined(HAS_PMU) && \
|
#if defined(HAS_RAKPROT) && !defined(ARCH_PORTDUINO) && !defined(HAS_PMU)
|
||||||
!MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR
|
|
||||||
if (hasRAK()) {
|
if (hasRAK()) {
|
||||||
return getRAKVoltage();
|
return getRAKVoltage();
|
||||||
}
|
}
|
||||||
@@ -407,8 +405,7 @@ class AnalogBatteryLevel : public HasBatteryLevel
|
|||||||
/// we can't be smart enough to say 'full'?
|
/// we can't be smart enough to say 'full'?
|
||||||
virtual bool isCharging() override
|
virtual bool isCharging() override
|
||||||
{
|
{
|
||||||
#if HAS_TELEMETRY && !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR && defined(HAS_RAKPROT) && !defined(ARCH_PORTDUINO) && \
|
#if defined(HAS_RAKPROT) && !defined(ARCH_PORTDUINO) && !defined(HAS_PMU)
|
||||||
!defined(HAS_PMU)
|
|
||||||
if (hasRAK()) {
|
if (hasRAK()) {
|
||||||
return (rak9154Sensor.isCharging()) ? OptTrue : OptFalse;
|
return (rak9154Sensor.isCharging()) ? OptTrue : OptFalse;
|
||||||
}
|
}
|
||||||
@@ -416,20 +413,7 @@ class AnalogBatteryLevel : public HasBatteryLevel
|
|||||||
#ifdef EXT_CHRG_DETECT
|
#ifdef EXT_CHRG_DETECT
|
||||||
return digitalRead(EXT_CHRG_DETECT) == ext_chrg_detect_value;
|
return digitalRead(EXT_CHRG_DETECT) == ext_chrg_detect_value;
|
||||||
#else
|
#else
|
||||||
#if HAS_TELEMETRY && !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR && !defined(ARCH_PORTDUINO) && !defined(ARCH_STM32WL) && \
|
|
||||||
!defined(DISABLE_INA_CHARGING_DETECTION)
|
|
||||||
if (hasINA()) {
|
|
||||||
// get current flow from INA sensor - negative value means power flowing into the battery
|
|
||||||
// default assuming BATTERY+ <--> INA_VIN+ <--> SHUNT RESISTOR <--> INA_VIN- <--> LOAD
|
|
||||||
LOG_DEBUG("Using INA on I2C addr 0x%x for charging detection", config.power.device_battery_ina_address);
|
|
||||||
#if defined(INA_CHARGING_DETECTION_INVERT)
|
|
||||||
return getINACurrent() > 0;
|
|
||||||
#else
|
|
||||||
return getINACurrent() < 0;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
return isBatteryConnect() && isVbusIn();
|
return isBatteryConnect() && isVbusIn();
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -449,7 +433,7 @@ class AnalogBatteryLevel : public HasBatteryLevel
|
|||||||
float last_read_value = (OCV[NUM_OCV_POINTS - 1] * NUM_CELLS);
|
float last_read_value = (OCV[NUM_OCV_POINTS - 1] * NUM_CELLS);
|
||||||
uint32_t last_read_time_ms = 0;
|
uint32_t last_read_time_ms = 0;
|
||||||
|
|
||||||
#if HAS_TELEMETRY && !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR && defined(HAS_RAKPROT)
|
#if defined(HAS_RAKPROT)
|
||||||
|
|
||||||
uint16_t getRAKVoltage() { return rak9154Sensor.getBusVoltageMv(); }
|
uint16_t getRAKVoltage() { return rak9154Sensor.getBusVoltageMv(); }
|
||||||
|
|
||||||
@@ -466,9 +450,6 @@ class AnalogBatteryLevel : public HasBatteryLevel
|
|||||||
{
|
{
|
||||||
if (nodeTelemetrySensorsMap[meshtastic_TelemetrySensorType_INA219].first == config.power.device_battery_ina_address) {
|
if (nodeTelemetrySensorsMap[meshtastic_TelemetrySensorType_INA219].first == config.power.device_battery_ina_address) {
|
||||||
return ina219Sensor.getBusVoltageMv();
|
return ina219Sensor.getBusVoltageMv();
|
||||||
} else if (nodeTelemetrySensorsMap[meshtastic_TelemetrySensorType_INA226].first ==
|
|
||||||
config.power.device_battery_ina_address) {
|
|
||||||
return ina226Sensor.getBusVoltageMv();
|
|
||||||
} else if (nodeTelemetrySensorsMap[meshtastic_TelemetrySensorType_INA260].first ==
|
} else if (nodeTelemetrySensorsMap[meshtastic_TelemetrySensorType_INA260].first ==
|
||||||
config.power.device_battery_ina_address) {
|
config.power.device_battery_ina_address) {
|
||||||
return ina260Sensor.getBusVoltageMv();
|
return ina260Sensor.getBusVoltageMv();
|
||||||
@@ -479,20 +460,6 @@ class AnalogBatteryLevel : public HasBatteryLevel
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int16_t getINACurrent()
|
|
||||||
{
|
|
||||||
if (nodeTelemetrySensorsMap[meshtastic_TelemetrySensorType_INA219].first == config.power.device_battery_ina_address) {
|
|
||||||
return ina219Sensor.getCurrentMa();
|
|
||||||
} else if (nodeTelemetrySensorsMap[meshtastic_TelemetrySensorType_INA226].first ==
|
|
||||||
config.power.device_battery_ina_address) {
|
|
||||||
return ina226Sensor.getCurrentMa();
|
|
||||||
} else if (nodeTelemetrySensorsMap[meshtastic_TelemetrySensorType_INA3221].first ==
|
|
||||||
config.power.device_battery_ina_address) {
|
|
||||||
return ina3221Sensor.getCurrentMa();
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool hasINA()
|
bool hasINA()
|
||||||
{
|
{
|
||||||
if (!config.power.device_battery_ina_address) {
|
if (!config.power.device_battery_ina_address) {
|
||||||
@@ -502,10 +469,6 @@ class AnalogBatteryLevel : public HasBatteryLevel
|
|||||||
if (!ina219Sensor.isInitialized())
|
if (!ina219Sensor.isInitialized())
|
||||||
return ina219Sensor.runOnce() > 0;
|
return ina219Sensor.runOnce() > 0;
|
||||||
return ina219Sensor.isRunning();
|
return ina219Sensor.isRunning();
|
||||||
} else if (nodeTelemetrySensorsMap[meshtastic_TelemetrySensorType_INA226].first ==
|
|
||||||
config.power.device_battery_ina_address) {
|
|
||||||
if (!ina226Sensor.isInitialized())
|
|
||||||
return ina226Sensor.runOnce() > 0;
|
|
||||||
} else if (nodeTelemetrySensorsMap[meshtastic_TelemetrySensorType_INA260].first ==
|
} else if (nodeTelemetrySensorsMap[meshtastic_TelemetrySensorType_INA260].first ==
|
||||||
config.power.device_battery_ina_address) {
|
config.power.device_battery_ina_address) {
|
||||||
if (!ina260Sensor.isInitialized())
|
if (!ina260Sensor.isInitialized())
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user