mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-02 18:59:56 +00:00
dfcd0d14f6
* Add MaxNodes to Native * It compiles... * Convert nodedb to use new * Closer but still broken. * Finally working * Remove unintended lines * Don't include a pointer * Capitalization matters. * avoid rename in protocol regen * When trimming the nodeDB, start with a cleanup * Remove extra cleanupMeshDB() call for now --------- Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
20 lines
796 B
Bash
Executable File
20 lines
796 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
echo "This script requires https://jpa.kapsi.fi/nanopb/download/ version 0.4.7 to be located in the"
|
|
echo "firmware root directory if the following step fails, you should download the correct"
|
|
echo "prebuilt binaries for your computer into nanopb-0.4.7"
|
|
|
|
# the nanopb tool seems to require that the .options file be in the current directory!
|
|
cd protobufs
|
|
../nanopb-0.4.7/generator-bin/protoc "--nanopb_out=-S.cpp -v:../src/mesh/generated/" -I=../protobufs meshtastic/*.proto --experimental_allow_proto3_optional
|
|
|
|
# sed -i 's/#include "meshtastic/#include "./g' -- *
|
|
|
|
# sed -i 's/meshtastic_//g' -- *
|
|
|
|
#echo "Regenerating protobuf documentation - if you see an error message"
|
|
#echo "you can ignore it unless doing a new protobuf release to github."
|
|
#bin/regen-docs.sh
|