-
Notifications
You must be signed in to change notification settings - Fork 15
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
Wiseconnect 3.4 #68
Wiseconnect 3.4 #68
Conversation
d86a480
to
eb2342e
Compare
83f7d3f
to
e5bd024
Compare
@@ -142,3 +142,6 @@ zephyr_library_sources_ifdef(CONFIG_WISECONNECT_NETWORK_STACK | |||
${PROTOCOL_DIR}/wifi/si91x/sl_wifi.c | |||
${PROTOCOL_DIR}/wifi/src/sl_wifi_callback_framework.c | |||
) | |||
|
|||
zephyr_linker_sources(ROM_SECTIONS linker/code_classification_text.ld) | |||
zephyr_linker_sources(RAMFUNC_SECTION linker/code_classification_ramfunc.ld) |
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.
This code is duplicated with simplicity_sdk. I have to work on that.
(In fact, I get errors from sl_core_cortexm.c
, but I have not yet understand how this file come into the compilation.)
Converting to a draft. I have an issue with SiSdk 2024.12. |
My bad, my TA firmware was not up to date. |
e5bd024
to
b39243b
Compare
I added the DNM label manually for now, until the |
Wiseconnect relies on Simplicity SDK. For now Gecko SDK still work with Wiseconnect because Simplicity SDK didn't yet diverged from Gecko SDK. Simplicity SDK 2024.12 introduce "Code Classification", so we need extra linker scripts. Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Some files become orphans when socket offloaded is not used. Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Currently, IRQ074_Handler is declared with ISR_FLAG_DIRECT. So it bypasses the Zephyr ISR wrapper. There is not real reason to apply this flag. Worse, ISR_FLAG_DIRECT skips tasks rescheduling and may lead to unwanted behaviors. Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Update to the last Wiseconnect version. Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Wiseconnect 3.4 rename the symbol NUMBER_OF_BSD_SOCKETS Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Wiseconnect 3.4 renamed the symbol ULP_UART_ULP_MHZ_RC_CLK Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
b39243b
to
20ce1b0
Compare
Migrate to WiseConnect 3.4. The integration issue has been fixed.