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

Is there a limitation on the buffer length parameter to HAL_ADCEx_MultiModeStart_DMA? Length 32767 * 2 is OK and gives HAL_ADC_ConvHalfCpltCallback and HAL_ADC_ConvCpltCallback interrupts but 32768 * 2 fails with no interrupts.

I use STM32H753IITx and there is space in RAM_D1 to use length 2*65536.I call like this: if (HAL_ADCEx_MultiModeStart_DMA(&hadc1, guiaAdc12Data, (uint32_t)(ADC12_MAX_COUNT * 2)) != HAL_OK) { Error_Handler(); }

DGrön.1 by Associate II
  • 540 Views
  • 2 replies
  • 0 kudos

Resolved! SAI - no signal on MCLK pin

Hi :) I am using SAI in TDM-8 mode, my MCU is a STM32F446RE. I want to use a PCM1681 but so far I am simply analysing the outputs. Everything seems to work fine apart from the MCLK output pin which gives me nada.I followed what is explained in the RM...

0693W000002lgQSQAY.png
SLasn.1 by Senior
  • 3449 Views
  • 11 replies
  • 0 kudos

Do I have to use CMSIS-RTOS

I have used FreeRTOS on other projects and I don't understand why I need to have CubeMX include CMSIS-RTOS in order for me to use FreeRTOS.Is there a way to stop CubeMX including it?