Configuring BOR Level on STM32G0xx
Hello,I need to configure BOR Level to work @supply voltage of 2,5 VI'd like to configure this feature through CubeMX.Is it possible? How? Thanks,Alfonso
Ask questions, find answers, and share insights on STM32 products and their technical features.
Hello,I need to configure BOR Level to work @supply voltage of 2,5 VI'd like to configure this feature through CubeMX.Is it possible? How? Thanks,Alfonso
HAL_ADC_Start(&hadc1); HAL_ADC_PollForConversion(&hadc1,1000); readValue1 = HAL_ADC_GetValue(&hadc1); HAL_ADC_Stop(&hadc1); HAL_Delay(100); HAL_ADC_Start(&hadc2); HAL_ADC_PollForConversion(&hadc2,1000); readValue2 = HAL_ADC_GetValue(&hadc2); HAL_...
Hi,I have a ported version of PTPD working on my Stm32h723. Right now, I have the ETH_MACTSCR_TSENALL bit set so that every packet gets timestamped. This is, however, wasteful since it means every single packet rx, be it ptp or not uses an extra eth ...
Hi! Library used: Standard Peripheral Library (Yea, I must use this one)Hardware:Test bench that can generate two pwm signals ( A and B )Cable that connects the test bench to the other boardOther board that should read the signal, delivered by the ca...
Can variable values be stored in some fixed addresses of internal flash and retrieved from them after reset? is there any example for same.
Good morning everyone,I am trying to modify a bootloader that is already in production and working.My problem is that if I call the JumpToApplication() function right after peripheral initialization (as the production bootloader does), everything wor...
Hello,I am trying to use the I3C interface between STM32H563ZI in MB1404 board and NXP's temperature sensor P3T1085UK. I have found a question would like to be answered: Is there any way to send the IBI header (7'h7E) with SCL signal configured in I2...
Hi Experts,Is it possible to use STM32H5 OctoSPI interface (configured as Dual-Single-SPI) as two individual transmit-only SPI masters?Requirements:1. Two devices connected to MCU are identical but receive different data2. Devices are not a memory3. ...
Hi,I am new to STM32 MCUs and working on a small project at the moment. I following the reference manual but facing an issue that as soon as I enable ADC in CR, the MCU stops responding. I have attached the following code if someone could guide on wh...
I seek your assistance with an issue I'm encountering while attempting to jump from my bootloader to an application stored at a specific address in the flash memory of an STM32H723ZGT6TR microcontroller. I am able to successfully flash the applicati...