stm32 subghz DT #36512
Replies: 4 comments 3 replies
-
Thanks for pointing at this. There are 2 possible implementations to address LORA support for STM32WL:
First option will likely have some small conflicts with usual Zephyr APIs to deal with (exti for instance), but that shouldn't be too much trouble in the end. Is that helping ? |
Beta Was this translation helpful? Give feedback.
-
Adding @martinjaeger, @Mani-Sadhasivam, @tagunil, @str4t0m, @fabiobaltieri who also seem interested in WL, and maybe already had a look as well |
Beta Was this translation helpful? Give feedback.
-
@nguilbaudesoft, #36573 just got merged. |
Beta Was this translation helpful? Give feedback.
-
Are there any other options needed to get the lora e5 dev board to receive correctly? The timing seems to be off, or something else is happening - going off the class_a sample. I can send, but I mostly get errors receiving. I imagine it's the receive window timings, correct? Any help here would be greatly appreciated! I'm really loving zephyr, but I'm still trying to get comfortable with the code base. 😃 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
We are trying to use the STM32WL which includes the LoRA radio inside.
In the DT of the STM32WL there is a mention of the subghz SPI, but this SPI doesn't use the specific SUBGHZ HAL in the STM32 lib. Could you confirm that the STM32 SPI driver will work with for discussing with the internal LoRA tranceiver inside the STM32WL ?
in https://github.com/zephyrproject-rtos/zephyr/blob/main/dts/arm/st/wl/stm32wl.dtsi :
subghzspi: spi@58010000 {
compatible = "st,stm32-spi-fifo", "st,stm32-spi";
#address-cells = <1>;
#size-cells = <0>;
reg = <0x58010000 0x400>;
interrupts = <44 5>;
clocks = <&rcc STM32_CLOCK_BUS_APB3 0x00000001>;
status = "disabled";
label = "SUBGHZSPI";
};
What about the control signal: clock, gpios between the STM32 and LoRA tranceiver ?
Thanks,
Nicolas.
Beta Was this translation helpful? Give feedback.
All reactions