-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
driver: creating a cs multiantenna callback #20283
driver: creating a cs multiantenna callback #20283
Conversation
CI InformationTo view the history of this post, clich the 'edited' button above Inputs:Sources:sdk-nrf: PR head: 8830cc57499900a18d94406db4e79dbe03dc970a more detailssdk-nrf:
Github labels
List of changed files detected by CI (4)
Outputs:ToolchainVersion: 342151af73 Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped;
|
|
||
#include <stdint.h> | ||
|
||
/** @brief Antenna switching Callback for use in Channel Sounding. |
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.
/** @brief Antenna switching Callback for use in Channel Sounding. | |
/** @brief Antenna switching callback for use in Channel Sounding. |
1d30341
to
0909b64
Compare
#include <stdint.h> | ||
#include "cs_antenna_switch.h" |
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.
odd indent
#define DEFAULT_CS_ANTENNA_GPIO_PORT NRF_P1 | ||
#define DEFAULT_CS_ANTENNA_BASE_PIN (11) | ||
#define DEFAULT_CS_ANTENNA_PIN_MASK (0xF << DEFAULT_CS_ANTENNA_BASE_PIN) |
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.
there should be no default in a C file, it should come from dts
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.
Yes, I agree with you that, eventually, this will come from DTS. That is actually what we have planned in our team.
However in this first step we're keeping our existing hard-coded controller code (just moving it from the compiled library to these open source files) so that we can make this API change, which is a multi-step process.
We have not yet settled on what exactly the DTS configuration or its docs will look like and may need to collect more customer feedback before implementing it, so there is no point delaying this PR for that.
0909b64
to
603a8f6
Compare
had to add a init function for the pins being used by the antenna switch, while these are currently being set up by the SDC, it's better to assume that the SDC will not have this responsibility indefinitely. |
603a8f6
to
ee91c0a
Compare
ee91c0a
to
e7660ed
Compare
e7660ed
to
7b5ecfe
Compare
rebased in hope that it would fix CI errors |
The SDC manifest has been updated: #20321 |
in order to allow customers to use their own antenna switches for cs they need a way to link their antenna switching functions to the SDC. adding the callback for the antenna switch currently supported as well as linking the new callback to the SDC. also added a function to enable the pins used for antenna switching so the GPIO has the correct DIR set. Signed-off-by: Thomas Johansen <thomas.johansen@nordicsemi.no>
7b5ecfe
to
8830cc5
Compare
in order to allow customers to use their own antenna switches for cs they need a way to link their antenna switching functions to the SDC.
adding the callback for the antenna switch currently supported as well as linking the new callback to the SDC.