|
Using #stm32 HAL_TIM_xyz for counting pulses with timer in external clock mode
#stm32
Hi Pauli, If you are able to do what you want with Cube HAL then, to interface with zephyr, you just need to redefine the HAL callback (defined as weak in HAL drivr) in your zephyr application. You ca
Hi Pauli, If you are able to do what you want with Cube HAL then, to interface with zephyr, you just need to redefine the HAL callback (defined as weak in HAL drivr) in your zephyr application. You ca
|
By
Erwan Gouriou
· #1811
·
|
|
#stm32 pinmux.c compile failure STM32F407
#stm32
Hi Neo I'd advise you to have a look to STM32 clock control driver. It provides MCO support. It might not provide exactly the requested configuration, but at least it would be a working point that you
Hi Neo I'd advise you to have a look to STM32 clock control driver. It provides MCO support. It might not provide exactly the requested configuration, but at least it would be a working point that you
|
By
Erwan Gouriou
· #1776
·
|
|
Usage of optional 'erase-block-size' flash nodes property
Hi all, Optional property 'erase-block-size' is used to describe the minimum size of flash sector on which an erase operation could be applied. It is generated as a device tree generic define DT_FLASH
Hi all, Optional property 'erase-block-size' is used to describe the minimum size of flash sector on which an erase operation could be applied. It is generated as a device tree generic define DT_FLASH
|
By
Erwan Gouriou
· #1752
·
|
|
marat
Hi Murad, Seems Cmake somehow convert you build path to a reserved Cmake string that trigger the issue. I'm not familiar with build on windows, but I'd suggest to work around your build path. Erwan
Hi Murad, Seems Cmake somehow convert you build path to a reserved Cmake string that trigger the issue. I'm not familiar with build on windows, but I'd suggest to work around your build path. Erwan
|
By
Erwan Gouriou
· #1694
·
|
|
Dragino LSN50 and STLink
Hi Gustavo, Sorry, I'm not familiar with Dragino, nor J-Link, maybe Endre would know better, as he did the board port. Erwan
Hi Gustavo, Sorry, I'm not familiar with Dragino, nor J-Link, maybe Endre would know better, as he did the board port. Erwan
|
By
Erwan Gouriou
· #1453
·
|
|
STM32 CAN bus driver issues
#stm32
#can
Hi Joseph, Which board are you using? Did you check that CAN driver is available for this board? Not sure it has been deployed for the whole STM32 family. Erwan
Hi Joseph, Which board are you using? Did you check that CAN driver is available for this board? Not sure it has been deployed for the whole STM32 family. Erwan
|
By
Erwan Gouriou
· #1357
·
|
|
Implementing HDQ. No rx on USART 5 (STM32F0)
Hi Evan, You'll find the information in SoC's CMSIS file, available in STM32Cube SDK and under ext/hal/st/.../stm32f0/soc/ In that file, there's an enum with IRQ numbers. Erwan
Hi Evan, You'll find the information in SoC's CMSIS file, available in STM32Cube SDK and under ext/hal/st/.../stm32f0/soc/ In that file, there's an enum with IRQ numbers. Erwan
|
By
Erwan Gouriou
· #1251
·
|
|
gpio callback interference (STM32F0)
Hi Evan, On most stm32, pinx from all gpios will share the same interrupt. For instance PA3, PC3 and PE3 share the same interrupt and hence same callback. Besides depending on series, you'll have furt
Hi Evan, On most stm32, pinx from all gpios will share the same interrupt. For instance PA3, PC3 and PE3 share the same interrupt and hence same callback. Besides depending on series, you'll have furt
|
By
Erwan Gouriou
· #1246
·
|
|
STM32f0 Stop Mode
Hi Rob, clock_control_on won't help you for now as it is designed to enabled clock for subsystem (peripheral bus), and not to handle power management operations. The piece of code you need to (re)star
Hi Rob, clock_control_on won't help you for now as it is designed to enabled clock for subsystem (peripheral bus), and not to handle power management operations. The piece of code you need to (re)star
|
By
Erwan Gouriou
· #1127
·
|
|
STM32f0 Stop Mode
Hi Rob, When exiting stop mode PLL is disabled so you're running on HSI(or similar). This explain the change of clock speed after stop mode is exited. So you need to reconfigure and enable the PLL bef
Hi Rob, When exiting stop mode PLL is disabled so you're running on HSI(or similar). This explain the change of clock speed after stop mode is exited. So you need to reconfigure and enable the PLL bef
|
By
Erwan Gouriou
· #1123
·
|
|
How to setup an UART with flow control (RTS&CTS )?
#uart
#flowcontrol
#stm32
Hi Stefan There is a PR opened on this exact topic: https://github.com/zephyrproject-rtos/zephyr/pull/8306 I suggest you have a look. Hih Cheers Erwan
Hi Stefan There is a PR opened on this exact topic: https://github.com/zephyrproject-rtos/zephyr/pull/8306 I suggest you have a look. Hih Cheers Erwan
|
By
Erwan Gouriou
· #945
·
|
|
Were to send patches & Looking for a example for ADC and DFSDM for the stm32f4
Hi Stefan, I've not heard about DFSM support so far, but support would be welcomed indeed. About ADC, I advise to have a look to adc drivers implemented so far /drivers/adc/. You could rely on STM32Cu
Hi Stefan, I've not heard about DFSM support so far, but support would be welcomed indeed. About ADC, I advise to have a look to adc drivers implemented so far /drivers/adc/. You could rely on STM32Cu
|
By
Erwan Gouriou
· #923
·
|
|
[STM32L4] looks there is no way to flash and debug?
Ok, so openoncd support is indeed not provided for this board. And it happens it is not present neither in openocd. Though, it will work by re-using configuration provided for nucleo_l476rg. Duplicate
Ok, so openoncd support is indeed not provided for this board. And it happens it is not present neither in openocd. Though, it will work by re-using configuration provided for nucleo_l476rg. Duplicate
|
By
Erwan Gouriou
· #604
·
|
|
[STM32L4] looks there is no way to flash and debug?
Hi Carles, There is no particular limitation on STM32L4 that should prevent you to flash and debug. Can you provide us more details on your set up to understand what is going on (board, SW, environmen
Hi Carles, There is no particular limitation on STM32L4 that should prevent you to flash and debug. Can you provide us more details on your set up to understand what is going on (board, SW, environmen
|
By
Erwan Gouriou
· #602
·
|
|
NFC Library
Fyi, created https://github.com/zephyrproject-rtos/zephyr/issues/5703
Fyi, created https://github.com/zephyrproject-rtos/zephyr/issues/5703
|
By
Erwan Gouriou
· #468
·
|
|
NFC Library
Ok, Thanks Carles. So let me create an issue as a start, and we'll build on that. Regards Erwan
Ok, Thanks Carles. So let me create an issue as a start, and we'll build on that. Regards Erwan
|
By
Erwan Gouriou
· #467
·
|
|
NFC Library
Hi all, Does anyone have ever looked to a NFC library that could be integrated into Zephyr?Would there be any interest? Thanks Erwan
Hi all, Does anyone have ever looked to a NFC library that could be integrated into Zephyr?Would there be any interest? Thanks Erwan
|
By
Erwan Gouriou
· #463
·
|
|
nucleo_f401re can not flash and can not work
Hi, Can you have a try with following configuration ? #CONFIG_CLOCK_STM32_SYSCLK_SRC_PLL=y CONFIG_CLOCK_STM32_SYSCLK_SRC_HSI=y Erwan
Hi, Can you have a try with following configuration ? #CONFIG_CLOCK_STM32_SYSCLK_SRC_PLL=y CONFIG_CLOCK_STM32_SYSCLK_SRC_HSI=y Erwan
|
By
Erwan Gouriou
· #77
·
|
|
nucleo_f401re can not flash and can not work
Hi, Looking to the picture of the board you sent me, I can see some differences with the board I have: -Lack of X2, C32, C31, R34, R36 on your board -Lack of C26 on my board. This might be a variant I
Hi, Looking to the picture of the board you sent me, I can see some differences with the board I have: -Lack of X2, C32, C31, R34, R36 on your board -Lack of C26 on my board. This might be a variant I
|
By
Erwan Gouriou
· #76
·
|
|
nucleo_f401re can not flash and can not work
Hi, Did you follow steps documented here ? https://www.zephyrproject.org/doc/boards/arm/nucleo_f401re/doc/nucleof401re.html Else, can you provide more information: *command used ("make BOARD=nucleo_f4
Hi, Did you follow steps documented here ? https://www.zephyrproject.org/doc/boards/arm/nucleo_f401re/doc/nucleof401re.html Else, can you provide more information: *command used ("make BOARD=nucleo_f4
|
By
Erwan Gouriou
· #69
·
|