STM32 MCUs Embedded software

Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

DS2431 Read ROM returns 0x00 on STM32F446RE

Post edited by ST moderator to be inline with the community rules especially with the code sharing. In next time please use </> button to paste your code. Please read this post: How to insert source code Hi everyone, I’m trying to communicate with a ...

farukke by Associate
  • 201 Views
  • 2 replies
  • 3 kudos

PSSI reception with GPDMA circular linked list

I need to do long (100k+ samples) PSSI reception with GPDMA using linked list on STM32H7R3L8H6H. CubeMX version is v6.15.0 and CubeIDE is v1.19.0. Since single DMA request can't be that long, I am thinking of doing it with two circular linked-list no...

mkrk_1-1759144629210.png mkrk_0-1759144066642.png mkrk_0-1759154901325.png
mkrk by Associate III
  • 348 Views
  • 4 replies
  • 0 kudos

Smooth RTC calibration issue in STM32l431

I cannot get smooth calibration to work in STM32l431. This is the code: void HW_RTC_Init(void) { LL_RTC_TimeTypeDef time; LL_RTC_DateTypeDef date; LL_RCC_LSI_Enable(); while(LL_RCC_LSI_IsReady() == 0) { } LL_RCC_SetRTCClockSource(LL_RCC_RTC...

RFlod.2 by Associate III
  • 157 Views
  • 3 replies
  • 0 kudos

Resolved! STM32F767 single/dual bank in CubeIDE

Hi,Currently my STM32F767 is coming up in dual bank mode (I'm not sure why, since this does not seem to be the default) but I want to turn this off so I get the full 2Mbytes.However, I can see from AN4826 that if I turn off dual bank mode while the s...

Clarity on RAM STL Tests

  I am using STM32L476JE. I wish to use STL api to test 128kb of RAM as startup test for my device. I have come across some example codes but there seems to be confusion around the subsets.If possible can you share an example code snippet for the sam...

MIPI-DSI LTDC configuration lcd

Hello everyone, I need help with a DSI + LTDC configuration.I'm working on a custom board with an STM32H747BIT and trying to drive a 720x1280 RGB888 display without GRAM, using the ILI9881C controller via DSIHOST + LTDC.Here’s the situation:I’m curre...

Optimization breaks SPI code on L562

L562 processor.  SPI1.  Blocking mode.  Two sequential writes, second write variably returns error.code:// uses CS if USE_CS is set to CS_ACTIVE (default) // CS is not used if USE_CS is set to CS_INACTIVE uint32_t HAL_SPI::Send( uint8_t* cmdpt...