HarukiToreda
c30eb4b659
More delete options and cleanup of code
2025-11-10 00:42:49 -05:00
HarukiToreda
5c600ded1c
Unkwnown nodes no longer show as ??? on message thread
2025-11-09 23:49:20 -05:00
Jason P
dd4b5d443a
Merge branch 'develop' into multi-message-Storage
2025-11-08 23:10:17 -06:00
Quency-D
50f9be9a2b
Add the Heltec v4 expansion box. ( #8539 )
...
* Add the Heltec v4 expansion box.
* Change heltec-v4-oled to heltec-v4.
* Add touchscreen to I2C scanning.
* Add reset and busy pins to the ST7789.
* Ignore the touch interrupt pin and extend the sleep time to 1 hour.
* Remove the default sleep function.
---------
Co-authored-by: Ben Meadors <benmmeadors@gmail.com >
2025-11-08 06:47:24 -06:00
Jason P
09a38139f5
Fix broken endifs
2025-11-07 15:20:04 -06:00
Jason P
efc304ccf6
Merge branch 'develop' into multi-message-Storage
2025-11-07 15:08:01 -06:00
Jonathan Bennett
531cad5e88
Add API types, state, and log message in Debug screen. Added persistent "Connected" icon ( #8576 )
...
* Add API types, state, and log message in Debug screen
* un-goober the API state tracking
* Set the SerialConsole api_type
* Add api_type for Ethernet
* Remove API state debugging code
* Update wording for client connection states
* Improve string width for smaller screen devices
* Reserve space on navigation bar to fit link indicator
* Add persistent Connected icon to screen
* Connect System frame to ensure text doesn't overflow
---------
Co-authored-by: Ben Meadors <benmmeadors@gmail.com >
Co-authored-by: Jason P <applewiz@mac.com >
Co-authored-by: HarukiToreda <116696711+HarukiToreda@users.noreply.github.com >
2025-11-07 15:03:56 -06:00
Jason P
9f6b5f0a17
Improve getSafeNodeName further
2025-11-04 08:12:57 -06:00
Jason P
ccdb27d377
Improve getSafeNodeName / sanitizeString code.
2025-11-04 07:27:56 -06:00
Jason P
6647900196
Merge branch 'develop' into multi-message-Storage
2025-11-02 21:32:07 -06:00
Jonathan Bennett
7def82595d
Rename screen options to display options and add units chooser ( #8517 )
...
* Rename screen options to display options and add units chooser
* Add InitialSelected to DisplayUnits_menu
2025-11-02 21:30:41 -06:00
Jason P
c3b4e6bc9e
Merge branch 'develop' into multi-message-Storage
2025-11-02 06:21:51 -06:00
Jonathan Bennett
d1b66782d1
Hide nodes that don't have position in the distance and bearings nodelists ( #8518 )
2025-11-02 05:57:15 -06:00
Jason P
4c176d7829
Merge branch 'develop' into multi-message-Storage
2025-11-01 23:39:38 -05:00
Ben Meadors
75f7ded12c
Merge pull request #8513 from meshtastic/master
...
Master backmerge
2025-11-01 17:17:14 -05:00
Jason P
5b10510577
Add "Delete All Chats" to all chat views
2025-10-31 16:32:55 -05:00
Jason P
01a7389241
Merge branch 'develop' into multi-message-Storage
2025-10-31 07:57:49 -05:00
Ixitxachitl
c145be8e05
Refactor emote dimensions to 16x16 pixels ( #8493 )
...
Updated the dimensions of various emotes in emotes.h from 30x30 or 25x25 to 16x16 pixels for consistency and optimization. Added new emotes including heart_smile, Heart_eyes, and others, all with the same 16x16 size. This change improves memory usage and aligns with the design specifications for smaller emotes.
2025-10-31 21:20:29 +11:00
Jonathan Bennett
c330bfe848
Turn the e-ink backlight on for any brightness value over 0 ( #8481 )
2025-10-29 06:46:50 -05:00
Clive Blackledge
28f53d132a
refactor: change node count variables from uint8_t to uint16_t ( #8478 )
...
This is a non-breaking change that increases the internal representation
of node counts from uint8_t (max 255) to uint16_t (max 65535) to support
larger mesh networks, particularly on ESP32-S3 devices with PSRAM.
Changes:
- NodeStatus: numOnline, numTotal, lastNumTotal (uint8_t -> uint16_t)
- ProtobufModule: numOnlineNodes (uint8_t -> uint16_t)
- MapApplet: loop counters changed to size_t for consistency with getNumMeshNodes()
- NodeStatus: Fixed log format to use %u for unsigned integers
Note: Default class methods keep uint32_t for numOnlineNodes parameter
to match the public API and allow flexibility, even though internal node
counts use uint16_t (max 65535 nodes).
This change does NOT affect protobuf definitions, maintaining wire
compatibility with existing clients and devices.
2025-10-28 15:32:08 -05:00
Jason P
580fa292ac
Address longName wrapping ( #8441 )
...
* Address longName wrapping
* Update src/graphics/draw/NodeListRenderer.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-10-25 07:12:59 -05:00
Jason P
263ae8c79f
Merge branch 'develop' into multi-message-Storage
2025-10-24 09:52:22 -05:00
Tom Fifield
799cf0e8b3
Master --> develop ( #8436 )
...
* Issue: #7944 External notification module: Adjusted default nag timeout to 15s (from 60s) (#7946 )
* External notification module: Adjusted default nag timeout to 5s (from 60s)
* Change nag to 15s
---------
Co-authored-by: Tom Fifield <tom@tomfifield.net >
* Add support for RAK WISMESH TAP V2 by enabling SDCARD_CS pin during deep sleep (#8429 )
* Upgrade trunk (#8369 )
Co-authored-by: vidplace7 <1779290+vidplace7@users.noreply.github.com >
* Don't assign negative SNR to unsigned int type
SNR-based contention windows are broken on systems with 64-bit long integers.
Fixes #8430
* Allow vibra or buzzer only notifications to obey cutoff (#8342 )
* Allow vibra or buzzer only notifications to obey cutoff
* Update src/modules/ExternalNotificationModule.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 >
* InkHUD crash fix when nodes get deleted from NodeDB (#8428 )
* InkHUD crash fix
* trunk fix
---------
Co-authored-by: Ben Meadors <benmmeadors@gmail.com >
Co-authored-by: Onyx Clawe <58921814+OnyxClawe@users.noreply.github.com >
Co-authored-by: Daniel.Cao <144674500+DanielCao0@users.noreply.github.com >
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: vidplace7 <1779290+vidplace7@users.noreply.github.com >
Co-authored-by: korbinianbauer <64415847+korbinianbauer@users.noreply.github.com >
Co-authored-by: Jason P <applewiz@mac.com >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
Co-authored-by: HarukiToreda <116696711+HarukiToreda@users.noreply.github.com >
2025-10-24 10:37:38 +11:00
HarukiToreda
35fa418739
InkHUD crash fix when nodes get deleted from NodeDB ( #8428 )
...
* InkHUD crash fix
* trunk fix
2025-10-23 11:55:24 -05:00
Jason P
3cb4e0e195
Merge branch 'develop' into multi-message-Storage
2025-10-20 08:23:05 -05:00
Ben Meadors
26747038bb
Merge pull request #8397 from meshtastic/InkHUD-Fixes
...
InkHUD Map improvements
2025-10-20 05:56:03 -05:00
Jason P
d25110f971
Merge branch 'develop' into multi-message-Storage
2025-10-19 19:15:49 -05:00
Jason P
c4656dacf7
Remove "Phone GPS" in order to correct GPS reporting ( #8407 )
...
* Removing Phone GPS reporting for the moment
2025-10-19 20:14:30 -04:00
HarukiToreda
cb3ce1b1a8
proper centering and rounder hops labels
2025-10-19 16:25:53 -04:00
HarukiToreda
2ad52812c0
Update src/graphics/niche/InkHUD/Applets/Bases/Map/MapApplet.cpp
...
better for clarity
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-10-19 15:12:03 -04:00
HarukiToreda
5b9563a357
Update src/graphics/niche/InkHUD/Applets/Bases/Map/MapApplet.cpp
...
makes sense, applying did not cause any visible issues.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-10-19 15:11:06 -04:00
Jason P
a635ee3de2
Fix potential crash for undefined variable
2025-10-19 07:11:18 -05:00
HarukiToreda
7afc6ef833
trunk
2025-10-19 03:47:02 -04:00
HarukiToreda
68e739359f
cleanup
2025-10-19 03:36:25 -04:00
HarukiToreda
2357ea0042
Clearer hop markers for inkHUD map
2025-10-19 02:48:55 -04:00
Jason P
69f489ee70
Merge branch 'develop' into multi-message-Storage
2025-10-18 18:51:55 -05:00
HarukiToreda
b4dea63f44
Gatting off BaseUI code from screenless devices and InkHUD ( #8384 )
2025-10-19 09:00:35 +11:00
HarukiToreda
30022c9377
Fixe battery voltage to show missing decimals ( #8386 )
2025-10-19 09:00:14 +11:00
Jason P
b26c95d4b9
Improve layout of messages screen
2025-10-18 10:26:45 -05:00
Jason P
13458d3a6a
Shorten longNames to not exceed message popups
2025-10-16 22:53:01 -05:00
HarukiToreda
4f79475b3c
improved destination filtering
2025-10-16 17:10:34 -04:00
Jason P
04c7720f4b
Remove legacy function renderMessageContent
2025-10-16 08:16:25 -05:00
Jason P
3e3f03c78d
Restore ellipsis to end of long names
2025-10-15 10:56:13 -05:00
HarukiToreda
c8f3cbb0f9
Free Heap when not on Message screen
2025-10-15 03:06:59 -04:00
HarukiToreda
62eaabc940
More optimization
2025-10-15 01:57:51 -04:00
HarukiToreda
4bd53500c6
Switch from dynamic std::string storage to fixed-size char[]
2025-10-14 14:14:28 -04:00
HarukiToreda
aaf4a7e59e
remove memory usage debug
2025-10-14 10:18:49 -04:00
Jason P
c180f23026
Implement Haruki's ClockRenderer and broadcast decomposeTime across various files. Attempt 2!
2025-10-14 08:09:12 -05:00
Jason P
ee3c7f2272
Revert "Implement Haruki's ClockRenderer and broadcast decomposeTime across various files."
...
This reverts commit 2f65721774 .
2025-10-13 22:44:37 -05:00
Jason P
2f65721774
Implement Haruki's ClockRenderer and broadcast decomposeTime across various files.
2025-10-13 22:29:42 -05:00