github-actions[bot] and vidplace7
502c5af524
Upgrade trunk ( #10481 )
...
Co-authored-by: vidplace7 <1779290+vidplace7@users.noreply.github.com >
2026-05-15 20:03:50 -05:00
renovate[bot] and renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
05707079bd
Update libch341-spi-userspace digest to 2e5ff75 ( #10485 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-05-15 19:30:04 -05:00
Ben Meadors
1c05633fcd
Add more support for small fonts in screen resolution determination ( #10480 )
2026-05-15 05:59:15 -05:00
github-actions[bot] and vidplace7
fce419b335
Upgrade trunk ( #10476 )
...
Co-authored-by: vidplace7 <1779290+vidplace7@users.noreply.github.com >
2026-05-14 06:43:06 -05:00
Ben Meadors
1ae4a538f5
Trunk
2026-05-13 09:27:05 -05:00
Andros Fenollosa
c756bbe2c1
Fix WiFi TCP/HTTP services not starting without USB serial connected ( #10460 )
...
Move WiFi.onEvent(WiFiEvent) registration before createSSLCert() to
prevent a race where the ESP32 auto-reconnects during cert generation
and fires GOT_IP before the handler is attached, causing
onNetworkConnected() to never run and the TCP/HTTP API services to
never initialize when booting without USB serial.
Also call onNetworkConnected() from reconnectWiFi() on all platforms
(not just RP2040) as a safety net; it is already guarded by
APStartupComplete so it only runs once.
2026-05-13 09:26:44 -05:00
Austin
4c3ba612bb
VSCode: Prepare for pioarduino transition ( #10471 )
...
Start reccomending the pioarduino VS Code extension instead of the PlatformIO extension.
pioarduino-based builds cannot complete correctly using the platformio extension. Normal platformio builds (nrf52, stm32) are unaffected//still work correctly.
Devs may need to delete their ~.platformio and .pio directories once after install in order to build properly.
2026-05-13 09:25:11 -05:00
Ben Meadors and Copilot Autofix powered by AI
59025e4820
Add initial support for Station G3 variant ( #10457 )
...
* Add initial support for Station G3 variant
* Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com >
* Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com >
---------
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com >
2026-05-13 08:07:24 -05:00
renovate[bot] and renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
0a7b3c723e
Update NeoPixel to v1.15.5 ( #10466 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-05-13 10:57:48 +02:00
github-actions[bot] and vidplace7
cd5d608e8d
Upgrade trunk ( #10461 )
...
Co-authored-by: vidplace7 <1779290+vidplace7@users.noreply.github.com >
2026-05-12 06:07:09 -05:00
Ben Meadors
7f5184281d
Make power status logging less chatty and track battery presence transitions ( #10453 )
2026-05-11 16:09:33 -05:00
Jonathan Bennett
4446b0f1a2
Add variantDefaultConfig and set eth_enabled to default true ( #10454 )
2026-05-11 14:51:21 -05:00
64fd61706d
ThinkNode M7 ( #8077 )
...
* ThinkNode G3, ETH support WIP
* ThinkNode G3, ETH support WIP
* ThinkNode G3, ETH support WIP
* ThinkNode G3, ETH support WIP
* ThinkNode G3, ETH support WIP
* ThinkNode G3, ETH support WIP
* ThinkNode G3, ETH support WIP
* rename variant and add guard macros
* older G3 operational. M7 next.
* Split out G3 and M7 to different variants. Completely new PCB design. The G3 stays on 'PRIVATE_HW'
* Define button behaviour and use all of the device flash
---------
Co-authored-by: Ben Meadors <benmmeadors@gmail.com >
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: caveman99 <25002+caveman99@users.noreply.github.com >
Co-authored-by: Jonathan Bennett <jbennett@incomsystems.biz >
2026-05-11 11:46:13 -05:00
Ben Meadors
8877608858
Protos
2026-05-11 09:32:55 -05:00
Ben Meadors
dfcb685963
Update protos
2026-05-11 08:08:15 -05:00
Ben Meadors
9bc25b34fd
Add guidance to use Throttle for time-based rate limiting in agent instructions
2026-05-11 07:42:04 -05:00
github-actions[bot] and vidplace7
33319aa4e2
Upgrade trunk ( #10451 )
...
Co-authored-by: vidplace7 <1779290+vidplace7@users.noreply.github.com >
2026-05-11 07:30:03 -05:00
Ben Meadors
d79e62fd2a
Chatty LLMs should pipe down
2026-05-10 10:20:10 -05:00
f6a954b97e
Implement rotating JSONL recorder for persistent logging ( #10428 )
...
* Implement rotating JSONL recorder for persistent logging
* Fixes
* Update documentation and clean up imports in command files
* Address remaining recorder review feedback
Agent-Logs-Url: https://github.com/meshtastic/firmware/sessions/2541773c-869a-463f-9fae-8505272c06ff
Co-authored-by: thebentern <9000580+thebentern@users.noreply.github.com >
* recorder: fix lock re-entry deadlock on start() and force_rotate_all()
The previous "Fixes" commit added `_files_snapshot()` which acquires
`self._lock` so handlers don't race with `stop()` clearing `_files`.
But two callers were already holding `self._lock` when they invoked
methods that go through the snapshot:
- `start()` writes the `recorder_start` event from inside its `with
self._lock:` block. `_write_event` -> `_files_snapshot` re-acquires
the same non-reentrant `threading.Lock`, freezing process startup.
- `force_rotate_all()` calls `self.status()` (which also acquires
`self._lock`) while still holding the lock from rotating each file.
Both fixes release the lock before the call. The recorder_start marker
still lands in events.jsonl because the started/started_at flags are
already set when we write it.
Verified end-to-end against the standalone /tmp/verify_pr_fixes.py
harness — all 9 PR review-comment fixes pass, including pause/resume
event ordering and concurrent start/stop without KeyError.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
* Fix markdown linting issues in leakhunt.md and repro.md
* Handle recorder startup and query review fixes
Agent-Logs-Url: https://github.com/meshtastic/firmware/sessions/78540a9f-fe62-4350-b252-0ae5621f0b8a
Co-authored-by: thebentern <9000580+thebentern@users.noreply.github.com >
* Tighten recorder follow-up tests
Agent-Logs-Url: https://github.com/meshtastic/firmware/sessions/78540a9f-fe62-4350-b252-0ae5621f0b8a
Co-authored-by: thebentern <9000580+thebentern@users.noreply.github.com >
* Stabilize recorder startup tests
Agent-Logs-Url: https://github.com/meshtastic/firmware/sessions/78540a9f-fe62-4350-b252-0ae5621f0b8a
Co-authored-by: thebentern <9000580+thebentern@users.noreply.github.com >
* Remove brittle recorder startup test
Agent-Logs-Url: https://github.com/meshtastic/firmware/sessions/78540a9f-fe62-4350-b252-0ae5621f0b8a
Co-authored-by: thebentern <9000580+thebentern@users.noreply.github.com >
* Polish recorder follow-up errors
Agent-Logs-Url: https://github.com/meshtastic/firmware/sessions/78540a9f-fe62-4350-b252-0ae5621f0b8a
Co-authored-by: thebentern <9000580+thebentern@users.noreply.github.com >
* Refine recorder startup and regex errors
Agent-Logs-Url: https://github.com/meshtastic/firmware/sessions/78540a9f-fe62-4350-b252-0ae5621f0b8a
Co-authored-by: thebentern <9000580+thebentern@users.noreply.github.com >
* Clean up recorder follow-up nits
Agent-Logs-Url: https://github.com/meshtastic/firmware/sessions/78540a9f-fe62-4350-b252-0ae5621f0b8a
Co-authored-by: thebentern <9000580+thebentern@users.noreply.github.com >
* Trunk
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-05-10 09:22:40 -05:00
BJK
10a7f1042b
Fix screen geometry update for SH1107 display ( #10444 )
...
Added conditional block to update screen geometry for SH1107 128x128.
2026-05-09 13:20:50 -05:00
github-actions[bot] and thebentern
b4234b7f11
Automated version bumps ( #10419 )
...
Co-authored-by: thebentern <9000580+thebentern@users.noreply.github.com >
2026-05-08 19:05:55 -05:00
Jonathan Bennett
5512185cfe
Make heartbeat LED play nice with other LEDs ( #10423 )
2026-05-08 16:03:39 -05:00
github-actions[bot] and vidplace7
a8a785bbb7
Upgrade trunk ( #10418 )
...
Co-authored-by: vidplace7 <1779290+vidplace7@users.noreply.github.com >
2026-05-08 05:43:02 -05:00
Jonathan Bennett
0f854862e7
Give ThinkNode-m4 a heartbeat ( #10408 )
2026-05-07 13:17:29 -05:00
renovate[bot] and renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
b246bcd72e
Update libpax digest to df42474 ( #10406 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-05-06 20:52:30 -05:00
33e2bb70e6
Enhance GPS search failure handling backoff logic ( #10404 )
...
* Enhance GPS search failure handling backoff logic
* Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com >
* Remove stray submodule gitlink for .claude worktree
A 160000 (gitlink) entry for .claude/worktrees/naughty-payne-60fdb7
pointing at f2923590bc was accidentally committed in 9db15780f. The
path isn't a real submodule — it's a Claude Code agent worktree that
shouldn't be tracked.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
---------
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com >
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-05-06 20:44:04 -05:00
Ben Meadors
220bb4d186
Smart pointers and memory management cleanup ( #10400 )
...
* Refactor memory management in Syslog and StoreForwardModule
* Implement destructor for Lock
* Refactor RotaryEncoder and PacketHistory to use smart pointers for better memory management
* CH341 should use unique_ptr for improved memory management
* Fix checks in PH
* Improve Syslog::vlogf to handle variable argument lists more safely
* Fix initOk method to use nullptr for null pointer check
2026-05-06 15:33:59 -05:00
jessm33 and jessm33
6e810741f3
Fix GPS initialization logic for Portduino configuration ( #10395 )
...
Co-authored-by: jessm33 <root@example.com >
2026-05-05 17:28:22 -05:00
Ben Meadors
603cce2988
Add informSearchFailed method to update GPS power state handling ( #10394 )
2026-05-05 10:12:50 -05:00
renovate[bot] and renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
d559af8477
Update LovyanGFX to v1.2.21 ( #10373 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-05-05 12:29:04 +02:00
Ben Meadors
41f53177a1
Use OBS instead of launchpad ( #10375 )
2026-05-02 09:25:24 -04:00
github-actions[bot] and vidplace7
2d761f6453
Upgrade trunk ( #10364 )
...
Co-authored-by: vidplace7 <1779290+vidplace7@users.noreply.github.com >
2026-05-02 07:23:49 -05:00
renovate[bot] and renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
7cb071c780
Update platform-native digest to cab4b21 ( #10372 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-05-01 18:25:08 -04:00
Austin Lane
0240a00d09
MacOS: Re-Add Orcania/Yder
2026-05-01 10:55:32 -04:00
Austin
c0fcf807c0
MacOS: Correct pkg-config name openssl for ulfius. ( #10369 )
2026-05-01 10:42:17 -04:00
55f40ecdfd
Add ulfius webserver support to macos native target ( #10366 )
...
* Add ulfius webserver support to macos native target
* fix: update PiWebServer docs for macOS and add explicit cstring include
Agent-Logs-Url: https://github.com/meshtastic/firmware/sessions/3ce82582-23e0-4afe-b22f-b24f81721488
Co-authored-by: thebentern <9000580+thebentern@users.noreply.github.com >
* Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com >
* fix: add --cflags to openssl@3 pkg-config and fix apt package name
Agent-Logs-Url: https://github.com/meshtastic/firmware/sessions/1a6c59aa-4393-4134-8cee-61eeee0e9127
Co-authored-by: thebentern <9000580+thebentern@users.noreply.github.com >
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com >
2026-05-01 08:56:49 -05:00
Jason P
90744ee0b7
Update PhoneAPI.cpp to reduce chattiness ( #10367 )
2026-05-01 08:46:53 -05:00
Austin and Copilot
4ee9598107
Docker: Install grpcio-tools from distro ( #10358 )
...
Use distro provided Python at build time (instead of the `python` images from dockerhub) and install `grpcio-tools` using the distro provided packages.
This should speed up build times, ESPECIALLY on riscv64 (where prebuilt `grpcio-tools` wheels are not provided on pip).
Co-authored-by: Copilot <copilot@github.com >
2026-04-30 15:22:11 -05:00
Ben Meadors
7066abbb86
Fix MAC_from_string to use input parameter instead of global config for MAC address parsing ( #10356 )
...
* Fix MAC_from_string to use input parameter instead of global config for MAC address parsing
* Enhance MAC_from_string validation and error handling
* Add missing include for <cctype> in PortduinoGlue.cpp
2026-04-30 13:52:42 -05:00
Ben Meadors
21cef8c2e5
Add TCP support for Meshtastic MCP interface / tests and update docs ( #10355 )
...
* Add TCP support for Meshtastic MCP interface / tests and update docs
* Address TCP endpoint validation and error handling in connection
* TCP connection handling and device listing logic
* Fix docstring formatting in normalize_tcp_endpoint function
2026-04-30 13:51:29 -05:00
github-actions[bot] and thebentern
173ac58ed7
Update protobufs ( #10357 )
...
Co-authored-by: thebentern <9000580+thebentern@users.noreply.github.com >
2026-04-30 10:45:20 -05:00
github-actions[bot] and vidplace7
83adfd417a
Upgrade trunk ( #10354 )
...
Co-authored-by: vidplace7 <1779290+vidplace7@users.noreply.github.com >
2026-04-30 06:39:52 -05:00
Austin and Copilot
24d64a0013
Docker: Build for riscv64 ( #10345 )
...
Upstream support has been added in Debian and Alpine.
Only build as part of `docker_manifest` (Beta/Alpha/Daily) releases, because these will take a **while** thanks to qemu.
Co-authored-by: Copilot <copilot@github.com >
2026-04-29 21:04:49 -05:00
Ben Meadors
3a87fc82c0
Add documentation for macOS support in Copilot and Agent instructions
2026-04-29 19:54:05 -05:00
Austin
478444eb02
Docker-Alpine: Align version between build/main stages ( #10347 )
...
FROM python:3.14-alpine3.23 AS builder
FROM alpine:3.23
the alpine version needs to match in both stages 😅
2026-04-29 20:31:59 -04:00
renovate[bot] and renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
ad23c42fcc
Update meshtastic/device-ui digest to 4bf593a ( #10346 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-04-29 19:09:21 -05:00
Ben Meadors
195f42af82
Doesn't FSCom
2026-04-29 16:57:21 -05:00
Ben Meadors
089af764ec
Replace FSCom.format() with FSCom.rmDir() for directory cleanup in NodeDB::loadFromDisk()
2026-04-29 16:41:21 -05:00
Austin
7be5426f34
Do not FACTORY_INSTALL on ARCH_PORTDUINO ( #10343 )
2026-04-29 13:00:01 -05:00
github-actions[bot] and vidplace7
9ec63b5eb2
Upgrade trunk ( #10336 )
...
Co-authored-by: vidplace7 <1779290+vidplace7@users.noreply.github.com >
2026-04-29 12:55:48 -05:00