|
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
·
|
|
#stm32 pinmux.c compile failure STM32F407
#stm32
Hello guys, for the board STM32F407 I want to add pin PA8 25 MHz clk output to Etherent Phy. So that I add the following sentence (1) HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_HSE, RCC_MCODIV_1) into
Hello guys, for the board STM32F407 I want to add pin PA8 25 MHz clk output to Etherent Phy. So that I add the following sentence (1) HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_HSE, RCC_MCODIV_1) into
|
By
nanjunneo@...
· #1774
·
|
|
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 CAN bus driver issues
#stm32
#can
Hi Josef To me, the problem look more like you didn’t include the CAN bus drivers when you built the kernel. Try running ‘make menuconfig’ and turning on the CAN bus, then rebuilding. Lawrence King Pr
Hi Josef To me, the problem look more like you didn’t include the CAN bus drivers when you built the kernel. Try running ‘make menuconfig’ and turning on the CAN bus, then rebuilding. Lawrence King Pr
|
By
Lawrence King
· #1359
·
|
|
STM32 CAN bus driver issues
#stm32
#can
Update: CAN bus is working now with my board. I had to move by board config into the Zephyr tree, then pinmuxing seems to work. I still do not know the root cause. My configuration (for CAN) was ident
Update: CAN bus is working now with my board. I had to move by board config into the Zephyr tree, then pinmuxing seems to work. I still do not know the root cause. My configuration (for CAN) was ident
|
By
...
· #1363
·
|
|
STM32 CAN bus driver issues
#stm32
#can
Hi, the driver is built into the kernel, but what I found out yesterday is, that the pinmuxing is not set up correctly. And the STM32 CAN controller will wait until it has received some bits before it
Hi, the driver is built into the kernel, but what I found out yesterday is, that the pinmuxing is not set up correctly. And the STM32 CAN controller will wait until it has received some bits before it
|
By
...
· #1362
·
|
|
STM32 CAN bus driver issues
#stm32
#can
*Root directory = project folder
*Root directory = project folder
|
By
...
· #1368
·
|
|
stm3210c_eval flashing via openocd dfu fails
#stm32
#flash
I am trying Zephyr for first time and just want to get going on an example on an available evaluation board. I found a match for: https://docs.zephyrproject.org/latest/boards/arm/stm3210c_eval/doc/ind
I am trying Zephyr for first time and just want to get going on an example on an available evaluation board. I found a match for: https://docs.zephyrproject.org/latest/boards/arm/stm3210c_eval/doc/ind
|
By
PeterFromSwe
· #1406
·
|
|
stm3210c_eval flashing via openocd dfu fails
#stm32
#flash
Adding Erwan to see if he might have some insight. - k
Adding Erwan to see if he might have some insight. - k
|
By
Kumar Gala
· #1409
·
|
|
STM32F412 problem with full speed usb driver
#stm32
#usb
Hi, Do you use a custom board based on stm32f412 SoC? Does the sample application "samples/subsys/usb/cdc_acm" works on your board? Yannis
Hi, Do you use a custom board based on stm32f412 SoC? Does the sample application "samples/subsys/usb/cdc_acm" works on your board? Yannis
|
By
Yannis Damigos
· #976
·
|
|
STM32 CAN bus driver issues
#stm32
#can
Josef, The BOARD_ROOT works for me even with Stm32 boards. The pinmux is mandatory for alternate functions on st boards. You can run the following commad to set the board root: west build -b hvac_sens
Josef, The BOARD_ROOT works for me even with Stm32 boards. The pinmux is mandatory for alternate functions on st boards. You can run the following commad to set the board root: west build -b hvac_sens
|
By
...
· #1367
·
|
|
Example of how use UART to communicate with a LTE modem
#uart
#stm32
Thank you Stefan, I'll take a look. I'll share here the simple code I'm doing but so far it is not working. The pins PA9 and PA10 of my STM32 are connected to an adapter to serial port (TX->RX, RX->TX
Thank you Stefan, I'll take a look. I'll share here the simple code I'm doing but so far it is not working. The pins PA9 and PA10 of my STM32 are connected to an adapter to serial port (TX->RX, RX->TX
|
By
Gustavo FN
· #1213
·
|
|
Example of how use UART to communicate with a LTE modem
#uart
#stm32
Hey Gustavo, I had the same problem some moths ago. Some help to get into it: 1.) check how uarts work in ZephyrOS(poll/interrupt driven) https://github.com/zephyrproject-rtos/zephyr/tree/master/tests
Hey Gustavo, I had the same problem some moths ago. Some help to get into it: 1.) check how uarts work in ZephyrOS(poll/interrupt driven) https://github.com/zephyrproject-rtos/zephyr/tree/master/tests
|
By
Stefan Jaritz
· #1211
·
|
|
Example of how use UART to communicate with a LTE modem
#uart
#stm32
Hi Rodrigo, Yes the pins are okay. I can confirm the STM32 is sending a testing message (I connected the sending UART to my computer and read the input). Looks like the code to read the response is no
Hi Rodrigo, Yes the pins are okay. I can confirm the STM32 is sending a testing message (I connected the sending UART to my computer and read the input). Looks like the code to read the response is no
|
By
Gustavo FN
· #1215
·
|
|
Example of how use UART to communicate with a LTE modem
#uart
#stm32
Hi everyone, I am new with Zephyr OS and I have a STM32 nucleo l4rz5i board. I'm using the default UART2 port for console output and I would like to use uart1 to connect to a LTE modem, to be able to
Hi everyone, I am new with Zephyr OS and I have a STM32 nucleo l4rz5i board. I'm using the default UART2 port for console output and I would like to use uart1 to connect to a LTE modem, to be able to
|
By
Gustavo FN
· #1210
·
|
|
Example of how use UART to communicate with a LTE modem
#uart
#stm32
Hello Stefan,
By
Paul Sokolovsky
· #1212
·
|
|
Example of how use UART to communicate with a LTE modem
#uart
#stm32
Gustavo, Are you sure the pins are setup ok? You can try to use a ftdi connector to be sure. Do you have an dts overlay? Best regards, Rodrigo
Gustavo, Are you sure the pins are setup ok? You can try to use a ftdi connector to be sure. Do you have an dts overlay? Best regards, Rodrigo
|
By
...
· #1214
·
|
|
Example of how use UART to communicate with a LTE modem
#uart
#stm32
I am always using a blocking way to write and a non-blocking way to read. Have you tried?
I am always using a blocking way to write and a non-blocking way to read. Have you tried?
|
By
...
· #1216
·
|
|
Example of how use UART to communicate with a LTE modem
#uart
#stm32
I am not at home. I’ll take a look if I can share that with you. De nada. Abraço, Rodrigo
I am not at home. I’ll take a look if I can share that with you. De nada. Abraço, Rodrigo
|
By
...
· #1218
·
|
|
Example of how use UART to communicate with a LTE modem
#uart
#stm32
You have to enable uart interrupt at the conf files.
You have to enable uart interrupt at the conf files.
|
By
...
· #1220
·
|