AAC codec for STM32H Family
Please advise as a google search reveals no support for an AAC library for STM32H or STM32F families. I would like to potentially implement this on a Nucleo-H723ZG
Ask questions, find answers, and share insights on STM32 products and their technical features.
Please advise as a google search reveals no support for an AAC library for STM32H or STM32F families. I would like to potentially implement this on a Nucleo-H723ZG
Hi,I have an issue with low power operation when using the USBPD library. We have successfully implemented a low power feature for our new product. After that we have started the development of a USBPD feature. The problem is, that after the function...
Hello ST community,I am working with an ST microcontroller and a W25Q128JV flash memory, interfacing via QSPI. While using the HAL library, I’ve encountered an issue with the HAL_QSPI_Command_IT function.When I use the blocking HAL_QSPI_Command metho...
I try to erase a page using this code:bool EraseFlash() { uint32_t FirstPage = 0, NbOfPages = 0; uint32_t PageError = 0; int i; FLASH_EraseInitTypeDef EraseInitStruct = {0}; HAL_FLASH_Unlock(); FirstPage = GetPage(FLASH_START); /* Get the ...
Hello, ı want to run a function in ITCMRAM area. But as long as i call the function i enter HardFaultI added code snippet below(just the ITCMSection part) to the linker script.SECTIONS { /* The startup code goes first into FLASH */ .isr_vector : ...
hi,Using STM32G0B0CET6USB_DRD_FS---Host_Only_FS,USB_HOST---Mass Storage Host Class,FATFS---USB DiskUSB Interrupt---Enable. My requirement: i just want to create and write the file to usb_host.c and whenever i pluged the usb, the file automatically c...
Hello,I am acquiring samples from 50Hz Sine Wave through a CT and want to get 100 samples of this signal (T=20ms). For this, I need each sample at 200us apart so I get an array of 100 bytes. I have following clock setup:APB1 = 36Mhz; ADC = 12MhzTIM3 ...
Hi, I'm trying to use built in can bus bootloader in STM32L433 Nucleo Board. To enter the bootloader, I configure the Flash option byte as below: void configure_bootloader_option_bytes(void) { // Define a structure to hold the option byte ...
I am trying to toggle one of the LED lights of STM32 NUCLEO-L552ZE-Q board. I am working with the latest version of STM32CubeIDE 1.16.1. The steps I followed are given in the picture. However, I find this error when I debugg:set *(int *)0xE000EDFC=*(...
Hello STM Community,I am currently working on the STM32U5A9J-DK board and interfacing with an OctalFlash memory. I need assistance in optimizing the data capture process using the DQS (Data Strobe) signal.In my setup, the OctalFlash sends both DQS an...