Resolved! NUCLEO-C5A3ZG STM32C5 QSPI Display Bring up Project
This project tests the STM32C5's XSPI capability to drive QSPI display using the NUCLEO-C5A3ZG M.2/SerialMem connector. GitHub - stm32-hotspot/STM32C5-M2-Serial-Mem-QSPI-Display · GitHub
Ask questions and find answers on STM32 hardware set-ups, including schematic-related challenges, debugging probes, power configurations, and more.
This project tests the STM32C5's XSPI capability to drive QSPI display using the NUCLEO-C5A3ZG M.2/SerialMem connector. GitHub - stm32-hotspot/STM32C5-M2-Serial-Mem-QSPI-Display · GitHub
I am using stm32g030f6p9 microcontroller. I tried to make flash read protection: if ((FLASH->OPTR & FLASH_OPTR_RDP) != 0xbb) { FLASH->KEYR = 0x45670123; FLASH->KEYR = 0xCDEF89AB; while (FLASH->SR & FLASH_SR_BSY1); FLASH->...
Hi there. I'm new here.I've a great Problem. I have a Raspberry 4 B and I've plugged inthe stlink v3 for flashing my STM32 Board. I've installed some missinglibraries and also pystlink with pyUSB and stlink. There was no problems.On the programmer I ...
Hi TeamWe are currently working on ST MCU PN: STM32L431CCY6TR in our new project. Thus, I would like to check with ST whether this part is OK to be Conformal coated? The reason is, our PCB will need to be conformal coating after all the components ar...
Hello,We are facing RTC Drift as mentioned in previous question, So We have some queries regarding PCB Layout.1) GND of Crystal's Capacitor is connected to nearest GND Pin of STM32L412, should I connect this MCU GND Pin to Common GND Plane?2) How sho...
I'm struggling to connect directly my nucleo u575 using an external stlink. I have opened JP2, closed JP1. The pinout of connector CN5 is the following: 1 Vdd, 2 SWDIO, 3 GND, 4 swclk, 6 SWO, 10 target reset. The pin out of the stlink is 1 Vcc, 2 SWI...
I entered an inifite loop at the HAL_RCC_OscConfig (l 29) of SystemClockConfig() void SystemClock_Config(void) { RCC_OscInitTypeDef RCC_OscInitStruct = {0}; RCC_ClkInitTypeDef RCC_ClkInitStruct = {0}; /** Configure the main internal regulato...
Table 3 of DS12900 - Rev 6 shows a max voltage of 5.5V, which doesn't make sense, unless I'm missing something very important.Is this just a typo? Seems like it should be on the same line as the GATE pin or IN_GD.Thanks
I have a board based on the STM32L4R9 Discovery board. A key difference is that my board has Micron external flash (MT35XL512ABA1G12-0SIT) rather than Macronix (MX25LM51245GXDI0). The ST-LINK programmer fails to erase my flash, presumably because the...
I have a custom board powered by using USB, if I need to program a firmware by using the SWD feature in the ST-Link V2 Probe, may I connect just following 3 pins (without VDD) ?- TMS_SWDIO (pin 7)- TCK_SWCLK (pin 9)- GNDDo I need also to connect VDD ...
Hi,I am trying to implement a method of reusable code starting with STM32 projects. I have multiple micro controllers (F4, F7 etc) that will need to run the same application code. As STM generate the Drivers/HAL for me. Would I need to write API func...