Resolved! STM32L452 package with VDD12
Using the STM32L452. Would like to use the Vdd12 pin but it appears to be only available on the LQFP 64 package. Is there any way to have that pin available on the BGA packages?
Ask questions, find answers, and share insights on STM32 products and their technical features.
Using the STM32L452. Would like to use the Vdd12 pin but it appears to be only available on the LQFP 64 package. Is there any way to have that pin available on the BGA packages?
Hi, collegs!I have NUCLEO-144 (STM32F767) board. I started USB-HID example. It worked. Then I have change in "HAL_PCD_MspInit" function pins from pins DP, DM from PA11, PA12, to PB14, PB15. On my own board with STM32F767 USB is connected to this pin...
I m searching for a STM32L011G4 (16kb) compatible PIN to PIN mcu with memory>16kb. Is it exits ?
I'm using this current sensor: TLI4970-D050T4 According to the datasheet:How can the SPI master send exactly 16 clock pulses to the slave? I'm using L432KC Nucleo running at 2 MHz, but the SPI clock has been prescaled to 1 MHz. I would appreciate any...
Hi,what is the correct way to initialize the MAC address read from an external memory by using LwIP? /* Initialize all configured peripherals */..=> need MAC address here do correct initalization... MX_LWIP_Init();...=> MAC address can be read here f...
Would you like to tell me which IDE is available for the STM32CubeMX in Os of the Apple Mac pro book? Thanks lot!
I am trying to use RTC to wake up my stop mode every 30 second. I have two questions:so every time when RTC wakes up, I use below code to HAL_RTC_DeInit(&hrtc);:MX_RTC_Init( true ); to reinit RTC, and I don't use the interrupt handler.It appears work...
Hello,I am a newbie and I have started trying to learn how to program the MCU STM32F746ZG. I have created a simple code following a learning book that uses the STM32CubeMX software. The code is a simple "Hello World" that causes LED2 to flash every 5...
Hello, One specification of my system is the long live of my peripheral (Nucleo-L152RE+ IDB05A1). The most time, my peripheral is in advertising mode. I know that as soon as IDB05A1 advertising I can put µc in standby, the IDB05A1 will work autonomou...
HiI want to start using the MPU on STM32F7, however when I enable the MPU then unaligned accesses lead to a HardFault immediately.Code to reproduce the HardFault:static unsigned short foo[5] = { 0 }; memcpy(&foo[1], &foo[3], 4);I wrote a minimal Hard...