Please share code for M24M01 (Write character at random location and read back same character)using I2C with stm32L0
how to work on 16bit addressing in I2C.
how to work on 16bit addressing in I2C.
Hello,I have a problem with with the HAL_QSPI_Receive() function:If I configure USB MSD on the device the code bellow does not work anymore. The code stops with an error at i = 64. Code work for exact 64 iterations. If I don't configure the USB-MassS...
I'm working on FDCAN & CAN interface provided on H745XI-DISCO board. I was new to these interface when I started, but now I can say I have good understanding on CAN & FDCAN Bus protocol. Using provided examples with STM32CubeIDE FW for H7 series, I w...
The STM32F051C8T6 is currently unavailable on the market. It is liste as an active part but lead times are currently many months. I have a working PCB and firmware for this MCU. I would like to switch to an alternative MCU of this family without rewo...
I'm trying to run SPI2 (Master Receive Only) such that it continuously DMAs data from the slave. The problem is, it only works when I step over the HAL_SPI_Receive_DMA line... at which point I see SCLK, and it will run forever, until I "resume" th...
Im trying to reduce power by putting the a STM32l031 to sleep between timer interupts. It goes to sleep but never wakes upvoid HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef * htim) { if (htim -> Instance == TIM21) { Strobe++; if (Strobe==8352){ ...
I'm trying to generate a cascade of DMAs:1) HRTIM trigger ADC. 2) On ADC conversion completion, DMA ADC results to memory.3) On ADC DMA transfer complete, DMA memory to different peripheral.When a DMA occurs, the DMA request multiplexer generates bot...