"NODE_F103RB,NUCLEO" not found. Please ensure the device is correctly connected.
Posted: Fri Dec 09, 2022 8:48 am
Hi all,
I recently bought a Nucleo-F767ZI (https://www.st.com/en/evaluation-tools/ ... 767zi.html) and Nucleo-F103RB (not the blue pill) (https://www.st.com/en/evaluation-tools/ ... 103rb.html).
I tried to program on my Nucleo-F767ZI (LED, Ultrasound Sensor, and Keypad) and everything worked fine with my micro-USB wire. However, when I tried to upload the LED program to my Nucleo-F103RB board with my micro-B wire, I received the following error:
"NODE_F103RB,NUCLEO" not found. Please ensure the device is correctly connected.
Failed uploading: uploading error: exit status 7
I have set up the following under the tools ribbon:
Board: "Nucleo-64"
Board part number: "Nucleo F103RB"
For context, my LED program is as such:
Thanks for helping a newbie out!
Regards
Timo.
I recently bought a Nucleo-F767ZI (https://www.st.com/en/evaluation-tools/ ... 767zi.html) and Nucleo-F103RB (not the blue pill) (https://www.st.com/en/evaluation-tools/ ... 103rb.html).
I tried to program on my Nucleo-F767ZI (LED, Ultrasound Sensor, and Keypad) and everything worked fine with my micro-USB wire. However, when I tried to upload the LED program to my Nucleo-F103RB board with my micro-B wire, I received the following error:
"NODE_F103RB,NUCLEO" not found. Please ensure the device is correctly connected.
Failed uploading: uploading error: exit status 7
I have set up the following under the tools ribbon:
Board: "Nucleo-64"
Board part number: "Nucleo F103RB"
For context, my LED program is as such:
Code: Select all
// the setup function runs once when you press reset or power the board
void setup()
{
pinMode(D6, OUTPUT);
pinMode(D7, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(D6, LOW);
digitalWrite(D7, HIGH);
delay(1000); // wait for a second
digitalWrite(D7, LOW);
digitalWrite(D6, HIGH);
delay(1000); // wait for a second
}
Regards
Timo.