Add Heltec Wireless Tracker v1.1 board support#19
Open
slack-t wants to merge 2 commits intojrl290:mainfrom
Open
Add Heltec Wireless Tracker v1.1 board support#19slack-t wants to merge 2 commits intojrl290:mainfrom
slack-t wants to merge 2 commits intojrl290:mainfrom
Conversation
- New board: BOARD_HELTEC_TRACKER (0x3D), PRODUCT_HELTEC_TRACKER (0xC4), MODEL_CB (0xCB 433 MHz) / MODEL_CC (0xCC 868/915 MHz) - platformio.ini: new rtnode_heltec_tracker env (QIO PSRAM, 16 MB partitions, Adafruit ST7735+GFX libs) - Boards.h: full pin definitions — SX1262, ST7735S TFT, VEXT, VBAT, GNSS UART - Display.h: ST7735S branch (INITR_MINI160x80_PLUGIN, 160×80 landscape, NVS rotation bypass, no fillScreen on update to avoid soft-SPI flicker) - Power.h / Utilities.h / BoundaryConfig.h / Input.h: Tracker branches - sx126x.cpp: add Tracker to SPI init list; TCXO branch; fix SX1262 errata 15.4 — restore register 0x0736 IQ polarity bit after every SetPacketParams (was missing from this fork — caused LED always-on via spurious preamble IRQ and silent RX demodulation failure) - GNSS.h: UC6580 UART driver (VEXT gate, 115200 baud, NMEA parse, gnss_state_t) - flash.py / extra_script.py: tracker board profile and provisioning entry - docs: manifest-tracker.json + manifest-tracker-full.json; web flasher UI entry Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
Summary
sx126x.cpp):SetPacketParamssilently resets register 0x0736 to the wrong IQ polarity default; without restoring bit 2 after every call, RX demodulation fails silently while TX still works, and spurious preamble IRQs keep the carrier-detect LED constantly on. Fix is unconditional — benefits all SX1262 boards in this repo.Files changed
platformio.inirtnode_heltec_trackerenv (QIO PSRAM, 16 MB partitions, Adafruit ST7735+GFX)Boards.hBoundaryConfig.hDisplay.hPower.hUtilities.h/Input.hsx126x.cppGNSS.hgnss_state_tflash.py/extra_script.pydocs/manifest-tracker.json,manifest-tracker-full.json, web flasher UI entryTest plan
pio run -e rtnode_heltec_trackerbuilds cleanly🤖 Generated with Claude Code