-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Support Seeed Tracker-T1000-E-Pro #10067
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
Open
SeeedZhangyh
wants to merge
8
commits into
meshtastic:develop
Choose a base branch
from
Seeed-Studio:tracker-t1000-e-pro
base: develop
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.
Open
Changes from 2 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
86c5e76
tracker-t1000-e-pro
SeeedZhangyh 826ba7f
tracker-t1000-e-pro
SeeedZhangyh 144e866
update radiolib link
SeeedZhangyh b1e58fa
Merge branch 'meshtastic:develop' into tracker-t1000-e-pro
SeeedZhangyh a14de73
Merge branch 'meshtastic:develop' into tracker-t1000-e-pro
SeeedZhangyh 38dfe36
Supports Tracker-T1000-E-Pro
NS-ice dfe7110
Merge branch 'tracker-t1000-e-pro' of https://github.com/Seeed-Studio…
NS-ice a37f9b5
Update variants/nrf52840/tracker-t1000-e-pro/variant.h
SeeedZhangyh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| { | ||
| "build": { | ||
| "arduino": { | ||
| "ldscript": "nrf52840_s140_v7.ld" | ||
| }, | ||
| "core": "nRF5", | ||
| "cpu": "cortex-m4", | ||
| "extra_flags": "-DARDUINO_WIO_WM1110 -DNRF52840_XXAA", | ||
| "f_cpu": "64000000L", | ||
| "hwids": [ | ||
| ["0x239A", "0x8029"], | ||
| ["0x239A", "0x0029"], | ||
| ["0x239A", "0x002A"], | ||
| ["0x239A", "0x802A"], | ||
| ["0x2886", "0x0057"] | ||
| ], | ||
| "usb_product": "T1000-E-BOOT", | ||
| "mcu": "nrf52840", | ||
| "variant": "Seeed_T1000-E-Pro", | ||
| "bsp": { | ||
| "name": "adafruit" | ||
| }, | ||
| "softdevice": { | ||
| "sd_flags": "-DS140", | ||
| "sd_name": "s140", | ||
| "sd_version": "7.3.0", | ||
| "sd_fwid": "0x0123" | ||
| }, | ||
| "bootloader": { | ||
| "settings_addr": "0xFF000" | ||
| } | ||
| }, | ||
| "connectivity": ["bluetooth"], | ||
| "debug": { | ||
| "jlink_device": "nRF52840_xxAA", | ||
| "svd_path": "nrf52840.svd", | ||
| "openocd_target": "nrf52840-mdk-rs" | ||
| }, | ||
| "frameworks": ["arduino"], | ||
| "name": "Seeed T1000-E-Pro", | ||
| "upload": { | ||
| "maximum_ram_size": 248832, | ||
| "maximum_size": 815104, | ||
| "speed": 115200, | ||
| "protocol": "nrfutil", | ||
| "protocols": [ | ||
| "jlink", | ||
| "nrfjprog", | ||
| "nrfutil", | ||
| "stlink", | ||
| "cmsis-dap", | ||
| "blackmagic" | ||
| ], | ||
| "use_1200bps_touch": true, | ||
| "require_upload_port": true, | ||
| "wait_for_upload_port": true | ||
| }, | ||
| "url": "https://www.seeedstudio.com/SenseCAP-Card-Tracker-T1000-E-Pro-for-Meshtastic-p-5913.html", | ||
| "vendor": "Seeed Studio" | ||
| } |
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| #if RADIOLIB_EXCLUDE_LR2021 != 1 | ||
|
|
||
| #include "LR2021Interface.h" | ||
| #include "configuration.h" | ||
| #include "error.h" | ||
|
|
||
| LR2021Interface::LR2021Interface(LockingArduinoHal *hal, RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, | ||
| RADIOLIB_PIN_TYPE busy) | ||
| : LR20x0Interface(hal, cs, irq, rst, busy) | ||
| { | ||
| } | ||
| #endif |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| #pragma once | ||
| #if RADIOLIB_EXCLUDE_LR2021 != 1 | ||
| #include "LR20x0Interface.h" | ||
|
|
||
| /** | ||
| * Our adapter for LR2021 radios | ||
| */ | ||
| class LR2021Interface : public LR20x0Interface<LR2021> | ||
| { | ||
| public: | ||
| LR2021Interface(LockingArduinoHal *hal, RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, | ||
| RADIOLIB_PIN_TYPE busy); | ||
|
|
||
| }; | ||
| #endif |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.