2024-08-21 09:41 AM - last edited on 2024-08-21 02:31 PM by Andrew Neil
Hi,
I have a Nucleo-144 F722ZE
I am attempting to program it with the arduino 2.3.2 ide.
And so far, no blink, no digitalWrite() and no Serial.println()
Details are listed below.
Thank you in advance. I am sure it is trivial, and apologize for having to ask. I have not found any document that helps me solve the problem.
For setup, I followed the instructions here,
Here is the blink code. This does blink anything and does not produce any output on the Serial Monitor in the Arduino IDE
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
Serial.begin(9600);
while( !Serial);
}
// the loop function runs over and over again forever
void loop() {
Serial.println("here i am");
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
Then I tried, setting a specific pin by number, hoping to see it on an oscilloscope. Again, no result
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(PD_13, OUTPUT);
Serial.begin(9600);
while( !Serial);
}
// the loop function runs over and over again forever
void loop() {
Serial.println("here i am");
digitalWrite(PD_13, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(PD_13, LOW); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
}
2024-08-21 10:38 AM - edited 2024-08-21 10:39 AM
Hello @drM and welcome to the ST Community :smiling_face_with_smiling_eyes:.
If you are looking for support on the STM32Duino, you have to use our STM32Duino forum available here:
As a first suggestion from me, i think you may should start from one of the available examples on the Arduino after installing the STM32Duino for sure.
Best Regards
STTwo-32
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2024-08-21 10:58 AM
Note that the instructions I was following came from an ST employee on community.st.com
So this seems like the right place at least for that.
2024-08-21 11:09 AM - edited 2024-08-29 07:37 AM
Yes this tutorial should be working just fine. We provide Some tutorials here in the community. But for dedicated support on STM32Duino, we have our forum dedicated for that. I've personally worked before on the STM32Duino on some projects and it works fine.
Best Regards.
STTwo-32
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.