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
Hello Team,I encountered an issue while using the ST-LINK GDB server version 7.6.0. The server started successfully, but it failed when attempting to halt the target. Below are the server messages and the steps I’ve taken to troubleshoot the problem:...
Hi all I just designed my first custom PCB running on an STM32U585(VIT6). Or let's say it was desired to run on a STM32...As I couldn't get the MCU noticed by neither the STM32CubeMX nor the STM32CubeProgrammer, I designed another board that just h...
I need step by step guidelines to make my custom board for my projectsDifferent chips need different capacitors crystal oscillators and some defile connectionsi need to know that can you please guide me for thatIf you give me the full tutorial, that ...
I am using the STEVAL-STWINBX1 development board and have downloaded the FP-SNS-DATALOG2 software.I have a Segger J-Link Base and tried to flash the software to the board using STM32Cube IDE, but the flashing failed and now the board has stopped work...
I followed This Youtube Video from ST for setting up USB CDC in the hopes I can pass data from a sensor through to my PC for processing. The video demonstrated how to echo back messages in the `usbd_cdc_if.c` file which worked and I could send and r...
Hello,I am coming to you because I have a rather difficult issue to identify.I have a screen mounted on I2C that originally communicates with an Arduino board via its address 0x3C. I have verified that I can communicate with this address using my Nuc...
NUCLEO-F412ZG Operating temperature Range?I want to test my target control IC over a specific temperature range.I would like to know the operating range of NUCLEO.
hello guys, i am using a FTDI FT232B17 for serial communicaiton with my stm32f429 board. i'm using keil uvision, and not using any libraries other than stm32f429xx.h to write the code. i am facing problems "receiving" data from the ftdi-ft232 to my S...
Hi, I have an STM32F429I-DISCO1 board. I have been learning how to use it and I thought it would be good to see how the professionals do it by looking at the original firmware. I downloaded en.stsw-stm32138, which has STM32F429I-Discovery_FW-V1.0.3 i...
I'm using Nucleo-U545 for my project and set the external interrupt for user button as follow.void HAL_GPIO_EXTI_Rising_Callback(uint16_t GPIO_Pin){if(GPIO_Pin == USER_BUTTON_Pin) { HAL_GPIO_TogglePin(LED_GREEN_GPIO_Port, LED_GREEN_Pin); printf("*b...