cancel
Showing results for 
Search instead for 
Did you mean: 

I'm trying to code NUCLEO-H755ZI-Q in Arduino IDE but it doesn't work.

mscyb12345
Associate

I'm trying to code the NUCLEO-H755ZI-Q in the Arduino IDE and it uploads but won't run.

I have the USB connected to USBPWR and the jumper connected to STLINK.

The code is written like this:

void setup() {

 Serial.begin(115200);

 while (!Serial);

 Serial.println("NUCLEO-H755ZI-Q: Hello from M7 core!");

}



void loop() {

 Serial.println("Looping...");

 delay(1000);

}

The code was uploaded but nothing was output on the serial monitor.

Please let me know why and how to fix it.

Thank you.

*This post has been translated from Korean to comply with the ST Community guidelines.

2 REPLIES 2
MasterT
Lead

I don't see nucleo-H755zi  in the list of officially supported boards. 

https://github.com/stm32duino/Arduino_Core_STM32#boards-available 

Welcome to the forum.

Please see How to write your question to maximize your chances to find a solution; in particular How to insert source code.

 

The Arduino IDE should allow you to use the debugger - so have you used the debugger to see what's happening?

For support with STM32Duino, see: https://www.stm32duino.com/

For support with the Arduino IDE, see: https://forum.arduino.cc/c/development-tools/ide-2-x/93

 

A complex system that works is invariably found to have evolved from a simple system that worked.
A complex system designed from scratch never works and cannot be patched up to make it work.