-
Notifications
You must be signed in to change notification settings - Fork 4
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
Add ubxlib as a Zephyr module #158
Merged
Merged
Conversation
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
You can find the documentation preview for this PR at this link. It will be updated about 10 minutes after the documentation build succeeds. Note: This comment is automatically posted by the Documentation Publishing GitHub Action. |
Signed-off-by: Stephan Linz <[email protected]>
rexut
previously approved these changes
Nov 20, 2023
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.
LGTM, many thx.
Signed-off-by: Stephan Linz <[email protected]>
All QEMU targets doesn't yet support GPIO functions out of the box, thus we have to disable related driver and shell setup. Signed-off-by: Stephan Linz <[email protected]>
See bug issue #159. That have to revert as soon as possible. Signed-off-by: Stephan Linz <[email protected]>
Provides a new sub-manifest to add the u-blox portable C API library as 'modules/lib/ubxlib' inside the build workspace. Signed-off-by: Stephan Linz <[email protected]>
Signed-off-by: Sarah Renkhoff <[email protected]>
Signed-off-by: Sarah Renkhoff <[email protected]>
Signed-off-by: Sarah Renkhoff <[email protected]>
Signed-off-by: Sarah Renkhoff <[email protected]>
Signed-off-by: Sarah Renkhoff <[email protected]>
* Create a Zephyr library instead of building directly into the application target * "Flattens" the build process by no longer calling into ubxlib.cmake * In rewriting, I trusted u-blox to get the distinction between UBXLIB_INC and UBXLIB_PRIVATE_INC right, even though in the original script both are simply thrown into zephyr_interface Signed-off-by: Sarah Renkhoff <[email protected]>
Signed-off-by: Sarah Renkhoff <[email protected]>
Signed-off-by: Sarah Renkhoff <[email protected]>
Also change the default from enabled to disabled Signed-off-by: Sarah Renkhoff <[email protected]>
Also add some more help messages into Kconfig. Signed-off-by: Stephan Linz <[email protected]>
Signed-off-by: Stephan Linz <[email protected]>
Signed-off-by: Sarah Renkhoff <[email protected]> Signed-off-by: Stephan Linz <[email protected]>
Signed-off-by: Sarah Renkhoff <[email protected]>
Signed-off-by: Sarah Renkhoff <[email protected]>
Signed-off-by: Sarah Renkhoff <[email protected]> Signed-off-by: Stephan Linz <[email protected]>
Signed-off-by: Sarah Renkhoff <[email protected]> Signed-off-by: Stephan Linz <[email protected]>
- add the reset GPIO line to requirements - show a full Devicetree sample for specific board - give a hint for standard configuration on top of an Arduino UNO R3 edge connector (D0, D1, D2) - add example console session - test on more boards: ST Nucleo L496ZG ST Nucleo F413ZH ST Nucleo F767ZI NXP MIMXRT1060-EVK Signed-off-by: Stephan Linz <[email protected]>
rexut
approved these changes
Nov 21, 2023
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.
Resolves #156.
This PR adds the u-blox library ubxlib, overriding the original build and configuration files with custom ones. This allows building it as a proper zephyr library.
Sources are pulled in via a submanifest, pointing at an auto-synced fork at
tiacsys/ubxlib
.To demonstrate its use, a sample is included which allows controlling a u-blox GNSS module via basic shell commands.