Ask questions, find answers, and share insights on STM32 products and their technical features.
Hello,Some background:STM32CubeIDE 1.6.1MCU: STM32L4R9ZGJ6SDK: STM32Cube_FW_L4_V1.14.0 (Yes I know it's old ~ 2019) Project is too large to update at the moment.I am currently debugging external DAC audio issues. I reverted to using simple SAI blocki...
I tryed two methodes, one just jumping to that address 0x1fff0000 via function pointer and second writing some magic numbers at 0x2001fffc and placing some asm code in the startup *.s file to jump branch to the system bootloader. I had to change cont...
For F73X, there is following code that avoid resetting date/time:if(LL_RTC_BAK_GetRegister(RTC, LL_RTC_BKP_DR0) != 0x32F2){.. LL_RTC_BAK_SetRegister(RTC,LL_RTC_BKP_DR0,0x32F2);}Shouldn't H7 behave similar to F7, regarding RTC initialization?
The tamper contact RTC.TAMP1 on PC13 is used for entering and leaving the standby modus in tamper - level - detection - mode. The detection of low level on RTC-TAMP1 finishes the standby mode and restarts the controller. That is all OK. but in about ...
void HAL_UART_RxCpltCallback(UART_HandleTypeDef *huart) { if(huart->Instance == USART2) { RX_Data[Rx_Index] = RXD; Rx_Index++; HAL_UART_Receive_IT(&UART2_WIFI,&RXD,1); } }
The RTC/LCD clock can be derived from HSE (prescaled). In this case, the prescaler must be chosen appropriately so as to get an RTC/LCD frequency within the admissible range.Using CubeMX, when the limits are exceeded, the tooltip says:* (tooltip over...
hi, am modifying the ASC python code for keyword spotting. Am using dataset which is 1 sec long wav files whereas ASC dataset is 30sec long wav files. while doing spectrogram-feature extraction am getting value 0.what is the frame length and hop leng...
Hi STM community,I have created stm32 project in STMCubeIDE. I2S2 configured as Half duplex Master in receive mode, 16k audio frequency and 24 bit on 32 bit format. Able to receive data in polling mode.But not able to receive data in SRAM1 memory ...
I am trying to use DMA to capture data in the background (from ADC) while I use PWM to control 2 motors. When I use DMA to capture the ADC values from my sensors it works fine. When I only use my PWM timers (without DMA in the background) the PWM wor...