Skip to content

Commit 3335b49

Browse files
author
Scott Powell
committed
Merge branch 'main' into dev
# Conflicts: # variants/heltec_vision_master_e290/platformio.ini
2 parents e5de6e6 + 0767fc4 commit 3335b49

File tree

5 files changed

+152
-63
lines changed

5 files changed

+152
-63
lines changed

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ MeshCore provides the ability to create wireless mesh networks, similar to Mesht
99

1010
## ⚡ Key Features
1111

12-
* Multi-Hop Packet Routing – Devices can forward messages across multiple nodes, extending range beyond a single radio's reach. MeshCore supports up to a configurable number of hops to balance network efficiency and prevent excessive traffic.
12+
* Multi-Hop Packet Routing
13+
* Devices can forward messages across multiple nodes, extending range beyond a single radio's reach.
14+
* Supports up to a configurable number of hops to balance network efficiency and prevent excessive traffic.
15+
* Nodes use fixed roles where "Companion" nodes are not repeating messages at all to prevent adverse routing paths from being used.
1316
* Supports LoRa Radios – Works with Heltec, RAK Wireless, and other LoRa-based hardware.
1417
* Decentralized & Resilient – No central server or internet required; the network is self-healing.
1518
* Low Power Consumption – Ideal for battery-powered or solar-powered devices.
@@ -90,6 +93,21 @@ Here are some general principals you should try to adhere to:
9093
* No dynamic memory allocation, except during setup/begin functions.
9194
* Use the same brace and indenting style that's in the core source modules. (A .clang-format is prob going to be added soon, but please do NOT retroactively re-format existing code. This just creates unnecessary diffs that make finding problems harder)
9295

96+
## Road-Map / To-Do
97+
98+
There are a number of fairly major features in the pipeline, with no particular time-frames attached yet. In very rough chronological order:
99+
- [X] Companion radio: UI redesign
100+
- [ ] Repeater + Room Server: add ACL's (like Sensor Node has)
101+
- [ ] Standardise Bridge mode for repeaters
102+
- [ ] Repeater/Bridge: Standardise the Transport Codes for zoning/filtering
103+
- [ ] Core + Repeater: enhanced zero-hop neighbour discovery
104+
- [ ] Core: round-trip manual path support
105+
- [ ] Companion + Apps: support for multiple sub-meshes (and 'off-grid' client repeat mode)
106+
- [ ] Core + Apps: support for LZW message compression
107+
- [ ] Core: dynamic CR (Coding Rate) for weak vs strong hops
108+
- [ ] Core: new framework for hosting multiple virtual nodes on one physical device
109+
- [ ] V2 protocol spec: discussion and concensus around V2 packet protocol, including path hashes, new encryption specs, etc
110+
93111
## 📞 Get Support
94112

95113
- Report bugs and request features on the [GitHub Issues](https://github.com/ripplebiz/MeshCore/issues) page.

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ build_firmware() {
7171

7272
# build .uf2 for nrf52 boards
7373
if [[ -f .pio/build/$1/firmware.zip && -f .pio/build/$1/firmware.hex ]]; then
74-
python bin/uf2conv/uf2conv.py .pio/build/$1/firmware.hex -c -o .pio/build/$1/firmware.uf2 -f 0xADA52840
74+
python3 bin/uf2conv/uf2conv.py .pio/build/$1/firmware.hex -c -o .pio/build/$1/firmware.uf2 -f 0xADA52840
7575
fi
7676

7777
# copy .bin, .uf2, and .zip to out folder

default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ in
44
pkgs.mkShell {
55
buildInputs = [
66
pkgs.platformio
7+
pkgs.python3
78
# optional: needed as a programmer i.e. for esp32
89
pkgs.avrdude
910
];

0 commit comments

Comments
 (0)