-
Notifications
You must be signed in to change notification settings - Fork 3k
add support for the murata's module CMWX1ZZABZ-078 based on STM32L0 #5905
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
Conversation
/morph build |
@ithinuel |
Build : SUCCESSBuild number : 923 Triggering tests/morph test |
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.
Hi
Here is a quick review :-)
.gitignore
Outdated
@@ -72,6 +72,9 @@ debug.log | |||
# Cscope | |||
cscope.* | |||
|
|||
# Ctags | |||
tags |
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.
not related to the PR ?
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.
No indeed, does it need to have its own PR ?
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 please. I know it seems small, but it helps in keeping pull requests atomic and relevant to their subject.
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.
Feel free to reference this PR to indicate that it's related.
@@ -0,0 +1,239 @@ | |||
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** | |||
;* File Name : startup_stm32l053xx.s |
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.
wrong file
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.
fixed (removed)
@@ -0,0 +1,44 @@ | |||
; Scatter-Loading Description File | |||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
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.
wrong file
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.
fixed (removed)
@@ -0,0 +1,44 @@ | |||
; Scatter-Loading Description File | |||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
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.
wrong file name
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.
fixed (removed)
targets/targets.json
Outdated
"core": "Cortex-M0+", | ||
"extra_labels_add": ["STM32L0", "STM32L0x2xB", "STM32L082KB", "STM32L082xx"], | ||
"detect_code": [], | ||
"device_has_add": ["ANALOGOUT", "LOWPOWERTIMER", "SERIAL_FC", "SERIAL_ASYNCH", "TRNG", "FLASH"], |
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.
Add macro MBEDTLS_CONFIG_HW_SUPPORT ?
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.
added
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.
Actually not as AES driver does not support STM32L0x2 yet.
Exporter Build : SUCCESSBuild number : 608 |
It's a tiny change, but holding off on another rebuild until .gitignore is restored. .gitignore change is not related to PR. |
Test : SUCCESSBuild number : 764 |
I have a remark about the subfolder name You wrote in the PR description that this module is based on the If it is a mistake and the MCU is a |
@bcostm Actually this is intended. @cmonr Ok, I remove it @0xc0170 I couldn't run them yet as I miss the DAPLink support for this soc. |
/morph build |
Build : SUCCESSBuild number : 941 Triggering tests/morph test |
Exporter Build : SUCCESSBuild number : 629 |
Update: rebase + rename from stm32l0x2xB to stm32l0x2xZ + disable LOWPOWERTIM as some tests were not passing.
|
Hi Just a comment on:
I think disabling LPT for a Lora board doesn't have any sense... |
@jeromecoutant Enabling LPT actually requires LSE/LSI and I couldn't get tests to pass with them. |
Yes, LPT is using LSE from Murata module.
It is up to you, it's your board :-) |
This PR needs #5937 |
Build : SUCCESSBuild number : 974 Triggering tests/morph test |
Exporter Build : FAILUREBuild number : 660 |
@ithinuel In that case, can you rebase this PR so we can rebuild? |
@cmonr It is already rebased & built but it seems I still have issue with the exporter of uvision. |
@ithinuel Looks like this is an issue on our side. |
/morph export-build |
Exporter Build : FAILUREBuild number : 672 |
@studavekar Can you please check the latest exporters failure here? |
@ithinuel, we're currently working to resolve this on our side. Once it's resolved, we'll relaunch the export build. |
Thanks, @cmonr. Have installed required pack for CMWX1ZZABZ /morph export-build |
Exporter Build : SUCCESSBuild number : 695 |
/morph test |
Test : SUCCESSBuild number : 827 |
Description
This PR add support for the STM32L082CZ and murata's CMWX1ZZABZ-078 module.
This was tested with @kivaisan on mbed-os-example-lora
Status
WORK IN PROGRESS
Related PR
Todos