Tom Fifield
f127702bef
Fix GPS Buffer full issue on NRF52480 (Seeed T1000E) ( #8956 )
...
We set the buffer size to about a byte on NRF52480, less than
other platforms:
esp32.ini: -DSERIAL_BUFFER_SIZE=4096
esp32c6.ini: -DSERIAL_BUFFER_SIZE=4096
nrf52.ini: -DSERIAL_BUFFER_SIZE=1024
However, 115200 baud, like the T1000e uses is about 12 times that
- almost 15 bytes per millisecond.
15 bytes * 200 millisecond (our GPS poll rate) = 3000 bytes, which is longer than our buffer
on the nrf52 platform. This causes "GPS Buffer full" errors on the T1000e
and other devices based on NRF52480 with newer GPS chips.
This patch increases SERIAL_BUFFER_SIZE for nrf52480 to 4096 to align with
other platforms. It keeps the original 1024 for the nrf52832, which has
fewer resources.
Fixes https://github.com/meshtastic/firmware/issues/5767
2025-12-12 16:23:23 -06:00
Ben Meadors
cce8cbfe34
Mark implicit ACK for MQTT as MQTT transport ( #8939 ) ( #8947 )
...
* Mark implicit ACK for MQTT as MQTT transport
* TRUNK
* Fix build
* Make sure implicit ACKs from MQTT do not stop retransmissions in ReliableRouter
---------
Co-authored-by: GUVWAF <78759985+GUVWAF@users.noreply.github.com >
2025-12-12 05:21:08 -06:00
github-actions[bot]
a4a6c3509a
Upgrade trunk ( #8946 )
...
Co-authored-by: vidplace7 <1779290+vidplace7@users.noreply.github.com >
2025-12-12 05:20:12 -06:00
GUVWAF
68250dc937
Mark implicit ACK for MQTT as MQTT transport ( #8939 )
...
* Mark implicit ACK for MQTT as MQTT transport
* TRUNK
* Fix build
* Make sure implicit ACKs from MQTT do not stop retransmissions in ReliableRouter
---------
Co-authored-by: Ben Meadors <benmmeadors@gmail.com >
2025-12-12 05:19:32 -06:00
Igor Danilov
c8628b3422
Fix #8899 [Bug]: [TloraPager] RotaryEncoder crash ( #8933 )
...
* Fix #8899 [Bug]: [TloraPager] RotaryEncoder crash
* Apply Copilot review
---------
Co-authored-by: Ben Meadors <benmmeadors@gmail.com >
2025-12-11 19:04:15 -06:00
renovate[bot]
2ac74d6677
Update actions/cache action to v5 ( #8944 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-11 19:03:14 -06:00
Ben Meadors
9d487ddc0d
Merge pull request #8945 from meshtastic/develop
...
Develop to master
2025-12-11 19:02:56 -06:00
Austin
bcfe069997
Optimize builds to reduce duplicate dependency checks ( #8943 )
...
'mtjson' will now build all required pieces when they don't exist
2025-12-11 19:01:31 -06:00
Austin
4fc96bdf83
Use 'gh-action-runner' action for "Check" jobs. ( #8938 )
...
Everything's pre-baked, 503 no more!
2025-12-11 12:26:21 -06:00
renovate[bot]
4ef943f204
Update meshtastic/device-ui digest to 2746a1c ( #8936 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-11 10:32:28 -06:00
Jonathan Bennett
a8fa5f25cb
Properly turn off power pins at shutdown for m3 ( #8935 )
2025-12-11 10:23:45 -06:00
Ben Meadors
3b2a1547de
More board_level extras
2025-12-11 06:23:08 -06:00
github-actions[bot]
6f725a1996
Upgrade trunk ( #8932 )
...
Co-authored-by: vidplace7 <1779290+vidplace7@users.noreply.github.com >
2025-12-11 05:25:46 -06:00
Ben Meadors
467c042bf7
Merge pull request #8929 from meshtastic/master
...
Master to dev
2025-12-10 20:48:03 -06:00
Ben Meadors
cc4c41167c
Merge pull request #8928 from meshtastic/develop
2025-12-10 19:08:53 -06:00
Benjamin Faershtein
fff2bbf4a0
Use truncated position for smart position ( #8906 )
2025-12-10 19:05:26 -06:00
Jonathan Bennett
fba92229a6
Add I2C device check for seesaw device on native ( #8927 )
...
It turns out the logic here was attempting to access i2c without being told to do so. Not good, especially on desktops.
2025-12-10 18:01:52 -06:00
Jason P
ff0a4ea320
Update System Frame for improved rendering on devices ( #8923 )
2025-12-10 16:30:26 -06:00
Jonathan Bennett
83b603827c
Enable Muzi-base LED notification ( #8925 )
2025-12-10 16:29:50 -06:00
Jason P
2032ff1c32
Create new screen colors for BaseUI ( #8921 )
...
* Create new colors for BaseUI
* Update Ice color
2025-12-10 11:09:37 -06:00
Alex Samorukov
5910cc2e26
Use PSRAM to reduce heap usage percentage on ESP32 with PSRAM ( #8891 )
...
* Use PSRAM for malloc > 256bytes to get more heap memory
* Use dynamic allocator on boards with PSRAM to free more heap
* Apply suggestion from @Copilot
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Move heap_caps_malloc_extmem_enable() to the top of the init
* Update src/main.cpp
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
---------
Co-authored-by: Ben Meadors <benmmeadors@gmail.com >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-12-10 06:23:23 -06:00
github-actions[bot]
ee80ec7b68
Upgrade trunk ( #8922 )
...
Co-authored-by: vidplace7 <1779290+vidplace7@users.noreply.github.com >
2025-12-10 06:14:00 -06:00
Austin
aa72e397f2
PIO: Fix closedcube lib reference ( #8920 )
...
Fixes ClosedCube reinstalling on every build
2025-12-09 16:40:37 -06:00
renovate[bot]
ec0dfb7337
Update peter-evans/create-pull-request action to v8 ( #8919 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-09 15:56:27 -06:00
Austin
c55bea8460
ARCtastic ( #8904 ) -- Do It Live!
...
Actions Runner Controller
Co-authored-by: Jonathan Bennett <jbennett@incomsystems.biz >
2025-12-09 15:11:07 -06:00
Austin
aa605fc4a2
Actions: Fix release manifest formating ( #8918 )
2025-12-09 14:27:13 -06:00
Igor Danilov
d75680a2dd
Fix #8915 [Bug]: Exception Decoder does not recognize the backtrace ( #8917 )
2025-12-09 12:24:41 -06:00
Austin
817f3b9ec8
Update platformio/espressif32 to v6.12.0 ( #7697 )
2025-12-09 09:57:02 -06:00
Ben Meadors
decd58cd5c
Merge pull request #8913 from meshtastic/revert-8858-nrf52-power-saving-1
...
Revert "Cut NRF52 bluetooth power usage by 300% - testers needed!"
2025-12-09 08:02:29 -06:00
Ben Meadors
e691bd9732
Revert "Cut NRF52 bluetooth power usage by 300% - testers needed! ( #8858 )"
...
This reverts commit ae8d3fbb3d .
2025-12-09 08:02:04 -06:00
Ben Meadors
6bad81f8dd
Merge pull request #8911 from vidplace7/fix-chmod
...
Fix apply device-install permissions
2025-12-09 06:50:19 -06:00
Austin Lane
69b9977fc1
Fix apply device-install permissions
...
device-install.sh doesn't exist for non-esp32 targets
2025-12-09 07:48:30 -05:00
Ben Meadors
0726bb4b56
Merge pull request #8910 from meshtastic/develop
...
Develop to master
2025-12-09 06:04:59 -06:00
github-actions[bot]
6b11991be0
Upgrade trunk ( #8856 )
...
Co-authored-by: vidplace7 <1779290+vidplace7@users.noreply.github.com >
2025-12-09 06:03:52 -06:00
Ben Meadors
8e63dcf59a
Merge branch 'master' into develop
2025-12-09 05:59:15 -06:00
Lewis He
042543eb25
Fixed the issue where T-Echo did not completely shut down peripherals upon power-off. ( #8524 )
...
Co-authored-by: Ben Meadors <benmmeadors@gmail.com >
2025-12-09 05:39:27 -06:00
phaseloop
ae8d3fbb3d
Cut NRF52 bluetooth power usage by 300% - testers needed! ( #8858 )
...
* Improve NRF52 bluetooth power efficiency
* test T114 bad LFXO
* T1000 test
* force BLE param negotiation
---------
Co-authored-by: Ben Meadors <benmmeadors@gmail.com >
2025-12-08 19:59:14 -06:00
Austin
928739e0fb
Renovate: fix malformed comment for wollewald/BH1750_WE ( #8767 )
2025-12-08 19:31:28 -06:00
Ben Meadors
8be7915fc7
Fix wm111111110
2025-12-08 19:19:10 -06:00
Ben Meadors
c052963395
Guard 2M PHY mode for NimBLE ( #8890 )
...
* Guard 2M PHY mode for NimBLE
* Update src/nimble/NimbleBluetooth.cpp
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Apply suggestion from @Copilot
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Apply suggestion from @Copilot
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Another #endif snuck in there
* Move endif
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-12-08 18:48:28 -06:00
Jonathan Bennett
65c418d4e1
Update protobuf name of FRIED_CHICKEN ( #8903 )
2025-12-09 11:13:59 +11:00
Jonathan Bennett
c3a69a2742
Fix backwards buttons on Thinknode-M1 ( #8901 )
2025-12-08 17:58:23 -06:00
Austin
66ff1536f3
Meshtastic build manifest ( #8248 )
2025-12-08 17:21:23 -06:00
simon-muzi
5671e9d96f
Improved R1 Neo & muzi-base buzzer beeps for GPS on/off ( #8870 )
...
Matched the resonant frequency of the hardware buzzer to maximize volume for the turn on beep.
Further distinguished ON beep from OFF beep, making it easier for users to understand the state change.
2025-12-08 13:50:05 -06:00
Manuel
bd4bcb94f0
tryfix eink parameters ( #8898 )
2025-12-08 13:14:24 -06:00
Igor Danilov
4b2f241478
Disable vibration if needed ( #8895 )
2025-12-08 06:03:20 -06:00
Wilson
eb087849c0
OnScreenKeyboard Improvement with Joystick and UpDown Encoder ( #8379 )
...
* Add mesh/Default.h include.
* Reflacter OnScreenKeyBoard Module, do not interrupt keyboard when new message comes.
* feat: Add long press scrolling for Joystick and upDown Encoder on baseUI frames and menus.
* refactor: Clean up code formatting and improve readability in Screen and OnScreenKeyboardModule
* Fix navigation on UpDownEncoder, default was RotaryEncoder while bringing the T_LORA_PAGER
* Update src/graphics/draw/MenuHandler.cpp
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update src/modules/OnScreenKeyboardModule.h
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update src/graphics/draw/NotificationRenderer.cpp
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Optimize the detection logic for repeated events of the arrow keys.
* Fixed parameter names in the OnScreenKeyboardModule::start
* Trunk fix
* Reflator OnScreenKeyboard Input checking, make it simple
* Simplify long press logic in OnScreenKeyboardModule.
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-12-08 05:40:30 -06:00
Igor Danilov
94aedff6ae
Resolve #8887 (T-LoRaPager Vibration on New Message Delivery) ( #8888 )
...
* Resolve #8887
* Update src/modules/ExternalNotificationModule.cpp
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update src/modules/ExternalNotificationModule.cpp
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* use canBuzz method
* trunk fmt
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-12-07 20:29:18 -06:00
Igor Danilov
2ae391197f
Fix #8883 (lora-Pager fter playing the notification, voltage does not disappear from the speaker) ( #8884 )
...
* Fix #8883
* Fix crash when delete not inicialized rtttlFile
2025-12-07 15:50:53 -06:00
Clive Blackledge
2a17c3b5d4
Change ARDUINO_USB_MODE from 0 to 1 in the board definition. This switches to the ESP32-S3's Hardware CDC and JTAG mode, which properly handles the reset signals for automatic reboot after firmware updates. ( #8881 )
2025-12-06 18:56:56 -06:00