Difference between STM32L433RCT6P and STM32L433RCT6?
Where generally do I find the difference described between different mcu models in the same series with same major features. For example the difference between STM32L433RCT6P and STM32L433RCT6?
Where generally do I find the difference described between different mcu models in the same series with same major features. For example the difference between STM32L433RCT6P and STM32L433RCT6?
Hi all.I have a motor connected to my STM32F7 board and I'm trying to generate an interrupt for every rotation. Each rotation is 2122 ticks but I keep getting an interrupt for every pulse generated from the motor encoders. My init code is:static voi...
Hi,I started now programming the STM32F767ZI MCU and do not have any experience with 32bit uController.I have to programm a project, which includes a SPI communication to an external ADC. It must be programmed with the LL library and I'd like to do t...
HelloI have trouble with handling an I2C error on my STM32F407. My I2C bus usually works fine but it sometimes hangs, with both clock and data lines are high, but the I2C communication does not start. The SR2.BUSY bit remains high and sometimes when ...
Hi, everyone.I have found a bug in my code resulting division by zero (float).We get hard fault if we try to divide an integer number by zero. So how does this process work for float numbers? I have tried this code and result is very strange. MCU han...
Hello,I try to use the FPU exception interrupt handler in STM32H743ZIT but the FPU interrupt is not coming. I initialized the interrupt in this way:HAL_NVIC_SetPriority(FPU_IRQn, 0, 0); HAL_NVIC_EnableIRQ(FPU_IRQn);Than provoke a division by zero FPU...
Compiler optimization for speed on STM32H747HI-DISCO board destroys accessing external flash in memory mapped mode. Works fine without optimization but I get a hardfault as soon as I try to access memory from 0x90000000 after memory mapped mode is...
Hi allEDIT: I am using the STM32F407 discorvery board. Apologies for not mentioning this in the original post. Just when I thought I understood the timers, I noticed a fundamental understanding problem on my side. I am trying to create a 1us timer us...
I try to use the timestamp function from can_message.h to know the timestamp of a message received on the CAN.But the value is every time 0. Is it a knowed bug?Because I use this function with another hardware without problem.With STM32 I'm not able ...
Hello,I am practicing with nucleof767ZI. I have stuck with the SPI, here i am trying to send some dummy data and read it through an analyzer. What I get is MOSI always low and SCK is always high. I find no change or pulses in clock line. As of now no...