Resolved! Where is the SAI_GCR for a STM32G441 described?
In the reference manual RM440 Rev7 that register is missing while the register is defined in the SAI_TypeDef. I only found a description in the F446 RM0390. Are they the same?
In the reference manual RM440 Rev7 that register is missing while the register is defined in the SAI_TypeDef. I only found a description in the F446 RM0390. Are they the same?
I set up an DMA spi transfer and I want to essentially remove the irq. I'm already in a IRQ and I'm staring a spi transfer and want to just wait for complete. but I can not find anywhere in the HAL code where SPI5_IRQHandler is called. I decided not ...
In ethernet HAL driver stm32h7xx_hal_eth.c function void ETH_DMARxDescListInit include row: " WRITE_REG(heth->Instance->DMACRDTPR, ((uint32_t)(heth->Init.RxDesc + (((uint32_t)(ETH_RX_DESC_CNT - 1))*sizeof(ETH_DMADescTypeDef)))));"This code adding val...
i used lvgl and stm32f469i-disco and i got many error Error: L6406E: No space in execution regions with .ANY selector matching. i turn off all the file system (stdio,win32,fatfs) because i have no external library (ex. dirent.h and unistd.h forlv_use...
I want to create a power distribution system that can accept up to three supplied (AC/DC, USB, and Battery. At the end of VBUS will be the management system that will choose the highest voltage and use that as primary supply.Would like some suggestio...
The Question (since this is a little long): Is there any known interaction between the WWDG timer and the bootloader located in System Memory? Is there any known differences in the F405 revisions that could have an interaction between the WWDG and b...
Hi, I want to use STM32 Nucleo example "STM32F072_MB1303_DRP_SRCING_DEVICE" on my board that include 1x STUSB1602 + 1x STM32F072CBU6 (48-UFQFPN).(the example works with STUSB1602 + STM32F072RB (LQFP64))-What will be the easiest way to port the examp...
The description for HAL_GetTickFreq says/** * @brief Return tick frequency. * @retval tick period in Hz */It returns 1 when the tick frequency is 1kHz. The period would be .001 seconds and the frequency would be 1000 Hz. Based on the typedef below, I...
I'm developing a device that works as a modbus slave over TCP/IP. For this application I'm using FreeRTOS with CMSIS-v1 and LwIP. The problem occurs sometimes when I disconnect the master (a PC with modbus poll), then the code stucks waiting for a se...