- Notifications
You must be signed in to change notification settings - Fork1k
[spi]: Keep constexpr constructor#2204
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Merged
Uh oh!
There was an error while loading.Please reload this page.
Conversation
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
Keep constexpr constructor to ensures that constructingan SPISettings object can be done at compiletime.Fixesstm32duino#2201.Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
This parameter should not be part of SPISettings.Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
Since internal CS pin removed.Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
Linked tostm32duino#912.Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
for backward compatibility.Example with Adafruit GFX Library library.Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
MemberAuthor
fpistm commentedNov 24, 2023
Tested with Radiolib with success using Nucleo WL55JC1 and LoRa E5 mini. Note to have generic sketch example use the staticconstuint32_t rfswitch_pins[] = { LORAWAN_RFSWITCH_PINS#if LORAWAN_RFSWITCH_PIN_COUNT == 2 , RADIOLIB_NC#endif};staticconst Module::RfSwitchMode_t rfswitch_table[] = { { STM32WLx::MODE_IDLE, { LORAWAN_RFSWITCH_OFF_VALUES } }, { STM32WLx::MODE_RX, { LORAWAN_RFSWITCH_RX_VALUES } }, { STM32WLx::MODE_TX_LP, { LORAWAN_RFSWITCH_RFO_LP_VALUES } }, { STM32WLx::MODE_TX_HP, { LORAWAN_RFSWITCH_RFO_HP_VALUES } }, END_OF_MODE_TABLE,}; |
Sign up for freeto 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.
Uh oh!
There was an error while loading.Please reload this page.
to ensures that constructing an SPISettings object can be done at compiletime.
This PR also:
Fixes#2201.