There is a problem in I2C HAL library
ok, i fix it, sorry for that
Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.
ok, i fix it, sorry for that
Each code image will have an associated bootloader. If the bootloader in the current image runs and decides to change to the image in the other bank (corrupt image, new update, etc) I want to be able to do a reboot and change to the other image. I'd ...
Hello together,I want to record a microphone with the Audio_back_and_record that I can operate at 48kHz and 3MHz.Only the variant 16kHz with 2MHz or 16kHz with 3MHz works, but unfortunately not.According to the Application Note AN5027 different clock...
Hello,I use PA2 pin to wake up from standby mode with a STM32F765 MCU.I am a bit confused because it is wrotten in HAL Manual (UM1905) at the page 607 : This pin is forced in input pull-down configuration and is active on rising edges.If i let the pi...
I’m using the STM32L476 discovery kit to test an application where a battery-powered product powers up a USB memory stick, connects to it, writes some data, and then shuts the stick down again, removing power. I've used the STM32 Cube to generate the...
Hello Community,I purchased a Cortex-M3 STM32F103VET6 board and trying to implement USB FS on it. I'm using CubeMX to generate code, the version is up to date and i'm using the latest firmware libraries (FW_F1_V1.6.1). After compile USB device doesn'...
I'm using the HAL_UART_Receive function for receiving strings and I need to check if the receiving strings matches with the strings that I want to receive.First I want to create the char for the string in heap:char *response = (char *)malloc(RN2483_M...
Hi..I am trying to test MPU support in FreeRTOS on STM32L476G-EVAL board.In addition to common files like tasks.c, queue.c etc., I added below files for MPU support to my project.1.) port.c (for ARM_CM4_MPU)2.) mpu_wrappers.c3) event_groups.cAnd ...
Lines 2558~ of Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_adc.c does this.However, it's not certain if ADC3 belongs to the same group as ADC1 or ADC2. If not, the use of ADC_ANY_OTHER_ENABLED is too restrictive, as we are working here only for in...