-
Notifications
You must be signed in to change notification settings - Fork 108
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
Esp32v3 initial support #113
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
c8fac1b
Initial changes to specify pins for dual SX1276 modules and board def…
code8buster 2af0a38
Removed redundant defines, changed platformio.ini to use esp32dev tar…
code8buster 880687f
Redefined pins for v3, added two-module instantiation in main
code8buster e6573f7
combined 1276/1262 ifdef
code8buster 412575a
Commented all ARDUINO_LORA ifdefs since the compiler refuses to use t…
code8buster 839072f
Uncommenting Arduino-LoRa lines, ifndefs added in Layer2 to fix prepr…
code8buster 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
There are no files selected for viewing
This file contains 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 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 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 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 |
---|---|---|
|
@@ -13,11 +13,12 @@ src_dir = . | |
data_dir = ../web/static | ||
default_envs= | ||
;ttgo-lora32-v1 | ||
ttgo-lora32-v2 | ||
;ttgo-lora32-v2 | ||
;ttgo-lora32-tbeam | ||
;heltec-v2 | ||
;sparkfun-lora | ||
;lopy4 | ||
; lopy4 | ||
esp32-v3 | ||
|
||
[env] | ||
platform = https://github.com/platformio/platform-espressif32.git | ||
|
@@ -34,7 +35,7 @@ lib_deps = | |
ESP Async [email protected] | ||
[email protected] | ||
https://github.com/jgromes/RadioLib#3682c6c9215891e3afb7672f1235fde1c3bd75fd | ||
https://github.com/sudomesh/LoRaLayer2#efaa3fa73e3c8f6a7c66e335873c0bd81cc865e3 | ||
https://github.com/code8buster/LoRaLayer2.git#esp32v3 | ||
https://github.com/paidforby/AsyncSDServer#13375c6be978cb34180378ecf4042a3a4a1f5eab | ||
ESP8266 and ESP32 OLED driver for SSD1306 displays | ||
[email protected] | ||
|
@@ -92,3 +93,11 @@ build_flags = -DLOPY4 | |
-I./src | ||
; -DDUAL_LORA | ||
; -DLL2_DEBUG | ||
[env:esp32-v3] | ||
board = esp32dev | ||
board_upload.maximum_size = 4194304 | ||
board_upload.maximum_ram_size = 532480 | ||
build_flags = -DESP32_V3 | ||
-DRL_SX1262 | ||
-I./src | ||
-DDUAL_LORA |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After merging both PRs, we should point this back at ""official" LoRaLayer2 latest commit.