-
Notifications
You must be signed in to change notification settings - Fork 82
Platform.io library #119
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
dala318
wants to merge
7
commits into
Lora-net:master
Choose a base branch
from
dala318:library
base: master
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.
+691
−8
Open
Platform.io library #119
Changes from 4 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
314ba3b
Create library.json
dala318 401c299
Add build flags
dala318 b01472a
Try fixing C syntax for CPP
dala318 afb8974
Build explicit files
dala318 b70d597
Add definitions for transparent external radio
dala318 54d1a41
Update library.json
dala318 41e8cfe
Merge pull request #1 from dala318/transparent
dala318 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 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,74 @@ | ||
{ | ||
"name": "SWL2001", | ||
"version": "0.1.0", | ||
"description": "LoRaWAN Library", | ||
"keywords": "LoRa, LoRaWAN, SX126x, SX127x", | ||
"authors": [ | ||
{ | ||
"name": "LoRa-NET", | ||
"url": "https://github.com/Lora-net", | ||
"maintainer": true | ||
} | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/Lora-net/SWL2001.git" | ||
}, | ||
"homepage": "https://github.com/Lora-net/SWL2001", | ||
"export": { | ||
"include": [ | ||
"lbm_lib/*" | ||
] | ||
}, | ||
"build": { | ||
"includeDir": "lbm_lib", | ||
"srcDir": "lbm_lib", | ||
"flags": [ | ||
"-I lbm_lib/smtc_modem_api", | ||
"-I lbm_lib/smtc_modem_core", | ||
"-I lbm_lib/smtc_modem_core/logging", | ||
"-I lbm_lib/smtc_modem_core/lorawan_api", | ||
"-I lbm_lib/smtc_modem_core/lorawan_manager", | ||
"-I lbm_lib/smtc_modem_core/lorawan_packages/application_layer_clock_syncronization", | ||
"-I lbm_lib/smtc_modem_core/lorawan_packages/firmware_management_protocol", | ||
"-I lbm_lib/smtc_modem_core/lorawan_packages/fragmented_data_block_transport", | ||
"-I lbm_lib/smtc_modem_core/lorawan_packages/lorawan_certification", | ||
"-I lbm_lib/smtc_modem_core/lorawan_packages/multi_package_access", | ||
"-I lbm_lib/smtc_modem_core/lorawan_packages/remote_multicast_setup", | ||
"-I lbm_lib/smtc_modem_core/lr1mac/src", | ||
"-I lbm_lib/smtc_modem_core/lr1mac/src/services", | ||
"-I lbm_lib/smtc_modem_core/lr1mac/src/smtc_real/src", | ||
"-I lbm_lib/smtc_modem_core/modem_services", | ||
"-I lbm_lib/smtc_modem_core/modem_supervisor", | ||
"-I lbm_lib/smtc_modem_core/modem_utilities", | ||
"-I lbm_lib/smtc_modem_core/radio_drivers", | ||
"-I lbm_lib/smtc_modem_core/radio_drivers/lr11xx_driver/src", | ||
"-I lbm_lib/smtc_modem_core/radio_planner/src", | ||
"-I lbm_lib/smtc_modem_core/smtc_modem_crypto", | ||
"-I lbm_lib/smtc_modem_core/smtc_modem_crypto/smtc_secure_element", | ||
"-I lbm_lib/smtc_modem_core/smtc_ral/src", | ||
"-I lbm_lib/smtc_modem_core/smtc_ralf/src", | ||
"-I lbm_lib/smtc_modem_hal" | ||
], | ||
"srcFilter": [ | ||
"-<smtc_modem_core/geolocation_services/>", | ||
"-<smtc_modem_core/smtc_modem_test.c>", | ||
"+<smtc_modem_core/lorawan_api/lorawan_api.c>", | ||
"+<smtc_modem_core/smtc_modem_crypto/smtc_modem_crypto.c>", | ||
"+<smtc_modem_core/modem_utilities/modem_event_utilities.c>", | ||
"+<smtc_modem_core/modem_utilities/fifo_ctrl.c>", | ||
"+<smtc_modem_core/modem_utilities/modem_core.c>", | ||
"+<smtc_modem_core/modem_supervisor/modem_supervisor_light.c>", | ||
"+<smtc_modem_core/modem_supervisor/modem_tx_protocol_manager.c>", | ||
"+<smtc_modem_core/lorawan_packages/lorawan_certification/lorawan_certification.c>", | ||
"+<smtc_modem_core/lorawan_manager/lorawan_join_management.c>", | ||
"+<smtc_modem_core/lorawan_manager/lorawan_send_management.c>", | ||
"+<smtc_modem_core/lorawan_manager/lorawan_cid_request_management.c>", | ||
"+<smtc_modem_core/lorawan_manager/lorawan_dwn_ack_management.c>", | ||
"+<smtc_modem_core/radio_planner/src/radio_planner.c>" | ||
] | ||
}, | ||
"frameworks": "*", | ||
"platforms": "*", | ||
"license": "BDS-3" | ||
} |
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.