-
Notifications
You must be signed in to change notification settings - Fork 0
Add RAK3112 firmware build configuration and documentation #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
Copilot
wants to merge
10,000
commits into
main
Choose a base branch
from
copilot/create-working-bin-version-3112
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
* Update device-install.sh * Update device-install.sh
* Update device-install.sh * Update device-install.sh
* Rename screen options to display options and add units chooser * Add InitialSelected to DisplayUnits_menu
Co-authored-by: thebentern <[email protected]>
This reverts commit 468247f.
* fix strlcpy error in Ubuntu 20.04 * add to native after tests
* nrf52: add watchdog Main thread only for now. * bump framework-arduinoadafruitnrf52 to pick up new wdt support * clang-format the new parts of main-nrf52.cpp --------- Co-authored-by: Ben Meadors <[email protected]>
* fix strlcpy compile error in Ubuntu 22.04 (#8520) * fix strlcpy error in Ubuntu 20.04 * add to native after tests * Add support for RAK_WISMESH_TAP_V2 and RAK3401 hardware models (#8537) * Update RadioLib to v7.4.0 --------- Co-authored-by: Manuel <[email protected]> Co-authored-by: Daniel.Cao <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: vidplace7 <[email protected]>
Updates the WiFi library way down in Portduino, to detect TCP connection drops
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This reverts commit 8395429.
* Don't Favorite Nodes if our Role is CLIENT_BASE * Update CannedMessageModule.cpp
Before this, all messages received when enabling S&F server would return Hops away: -1
Co-authored-by: Ben Meadors <[email protected]>
…st_heard unless CLIENT_BASE (#8495) Co-authored-by: Ben Meadors <[email protected]>
Co-authored-by: thebentern <[email protected]>
Before this, all messages received when enabling S&F server would return Hops away: -1
…st_heard unless CLIENT_BASE (#8495) Co-authored-by: Ben Meadors <[email protected]>
Co-authored-by: vidplace7 <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Everything's pre-baked, 503 no more!
'mtjson' will now build all required pieces when they don't exist
Develop to master
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* Fix #8899 [Bug]: [TloraPager] RotaryEncoder crash * Apply Copilot review --------- Co-authored-by: Ben Meadors <[email protected]>
* 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 <[email protected]>
Co-authored-by: vidplace7 <[email protected]>
* 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 <[email protected]>
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 meshtastic/firmware#5767
* Add DFU notification as a simple pop-up * Add safe conditional of IF_SCREEN * Forgot #if HAS_SCREEN
…rictions Co-authored-by: Ikarus122 <[email protected]>
Co-authored-by: Ikarus122 <[email protected]>
Co-authored-by: Ikarus122 <[email protected]>
Copilot
AI
changed the title
[WIP] Create working firmware version for 3112
Add RAK3112 firmware build configuration and documentation
Dec 19, 2025
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.
Description
Repository now contains complete Meshtastic firmware source from PR #8591 with RAK3112 hardware support. Build configuration is verified and ready, but requires environment with internet access to download ESP32 toolchains (~500MB from
registry.platformio.org).Changes Made
[env:rak3112]with proper build flags (-D RAK3312 -D _VARIANT_RAK3112_)QUICKSTART.md- GitHub Actions build instructionsBUILD_INSTRUCTIONS.md- Complete build guide with hardware specsNETWORK_LIMITATION.md- Network restriction workaroundsTASK_SUMMARY.md- Implementation overviewbuild-rak3112.sh- Automated build with error handlingRAK3112 Configuration
Located in
variants/esp32s3/rak3312/platformio.ini:Hardware: ESP32-S3 (240MHz), 16MB Flash, 8MB PSRAM, SX1262 LoRa, WisBlock-compatible modular stamp
Build Methods
arch=esp32s3,target=rak3112pio run -e rak3112(requires unrestricted internet)build-rak3112.shExpected Output
firmware-rak3112-*.factory.bin- Factory flash imagefirmware-rak3112-*.bin- OTA updatelittlefs-rak3112-*.bin- Filesystemfirmware-rak3112-*.elf- Debug symbols🤝 Attestations
Note: Build verification pending - requires environment with access to PlatformIO registry for toolchain downloads.
Warning
Firewall rules blocked me from connecting to one or more addresses (expand for details)
I tried to connect to the following addresses, but was blocked by firewall rules:
api.registry.nm1.platformio.org/home/REDACTED/.local/bin/pio pio run -e rak3112(dns block)/home/REDACTED/.local/bin/pio pio pkg install -e rak3112(dns block)/home/REDACTED/.local/bin/pio pio platform install [email protected](dns block)api.registry.platformio.org/home/REDACTED/.local/bin/pio pio run -e rak3112(dns block)/home/REDACTED/.local/bin/pio pio pkg install -e rak3112(dns block)/home/REDACTED/.local/bin/pio pio platform install [email protected](dns block)collector.platformio.org/home/REDACTED/.local/bin/pio pio project config --project-dir .(dns block)/home/REDACTED/.local/bin/pio pio run -e rak3112(dns block)/home/REDACTED/.local/bin/pio pio pkg install -e rak3112(dns block)registry.platformio.org/usr/bin/curl curl -I REDACTED 53 -j ACCEPT(dns block)If you need me to access, download, or install something from one of these locations, you can either:
Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.