How to use FdCan with STM32L552RE ?
Hello,I'm using Stm32Cubeide. How to configure the parameter settings (Clock Divider, Frame Format,..) for a classic can 500K ?Thanks for advance.
Ask questions, find answers, and share insights on STM32 products and their technical features.
Hello,I'm using Stm32Cubeide. How to configure the parameter settings (Clock Divider, Frame Format,..) for a classic can 500K ?Thanks for advance.
Hi everyone i have stm32f030c8t6 mcu with out evaluate borad, when i set the clock on 8 Mhz it's work correctly, but when i set the clock on 16,32Mhz with pll or even with HSE it doesn't work, i check in keil debug and it writes cannot access memory,...
I'm using an STM32F767ZI, and am programming it in C without any additional libraries (bare metal).I believe there is a memory leak somewhere as a memory allocation that typically would work seems to fail after the program has been running for some t...
In the past, I'd pull them from CUbe, but the ones I have seem out of date. Is there somewhere else I can get the standard peripheral libraries (on the website maybe)?
Here is the code:#include "stm32f10x.h" // Device header void USART2_ini(void); void USART_write(int ch); void delayMS(int delay); int main(void) { USART2_ini(); while(1) { USART_write('H'); USART_write('I'); delayMS(100); ...
Good morning?I am a professor teaching ARM Cortex Processor with Nucleo-F429 board at a university in Korea.I'm using the Nucleo-F429Zi board for a class, but I don't have a good book, so I'm writing an educational book right now.I would like to use ...
Hello,We use the CubeIDE generator for most of the code initialization. Therefore the HAL is also inizalized. The function HAL_Init(); is executed and TIM1 is started.The Hal ticks work fine.Now I want to use the Chanel 1 of Timer1 for a PWM signal o...
Hi,I'm trying to create multicore communication. I want to call interrupt in the second core. Firstly I thought that I can somehow make hardware semaphore release interrupt in the second core. But then I found something better in the CubeIDE:It looks...
Hi there. I am developing a bootloader application in IAR EWARM environment on my STM32f415 card. I'm having trouble uploading it to my stm32 card when I want to debug the bootloader code.Bootloader code starts from 0x08000000 and application code st...