ThinkNode M6 repeater: disable leftover MESH_DEBUG/GPS_NMEA_DEBUG#2935
Merged
liamcottle merged 1 commit intoJul 13, 2026
Merged
Conversation
The M6 is the only board whose simple_repeater env ships with MESH_DEBUG=1 and GPS_NMEA_DEBUG=1 enabled. MESH_DEBUG=1 adds a 5-second boot delay (examples/simple_repeater/main.cpp) plus verbose per-packet serial prints on the hot RX/TX path; GPS_NMEA_DEBUG=1 echoes every GPS UART character to the serial console (MicroNMEALocationProvider.h). Every sibling repeater env (M1, M3, t1000-e, RAK, Heltec) ships these off, and the M6 room_server env in this same file already has them commented. Comment them out to match.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The ThinkNode M6 is the only board whose
simple_repeaterenv ships withMESH_DEBUG=1andGPS_NMEA_DEBUG=1enabled.MESH_DEBUG=1triggers a 5-second boot delay inexamples/simple_repeater/main.cppand enables verbose per-packet serial prints on the hot RX/TX path.GPS_NMEA_DEBUG=1echoes every GPS UART character to the serial console (src/helpers/sensors/MicroNMEALocationProvider.h).Every sibling repeater env (M1, M3, t1000-e, RAK, Heltec) ships these off, and the M6
room_serverenv in the same file already has them commented out — so these are copy/port leftovers rather than intended defaults. This PR comments them out to match the rest of the tree; no functional code changes.