MCU compatible with STM32L011G4
I m searching for a STM32L011G4 (16kb) compatible PIN to PIN mcu with memory>16kb. Is it exits ?
Ask questions, find answers, and share insights on STM32 products and their technical features.
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...
Hi, I'm trying to add the Printer class to a project with a USB host port.Is there any code available?The project was created with CUBE-MX and uses FreeRTOS.
Hello there,I am working on STM32L432KB's Power saving modes and currently testing STOP2 Mode.After reading reference manual I made the code below to Enter and Exit from STOP2 Mode.My Goal is to enter Stop2 mode when a button is pressed and get back ...