Unable to upload blink program, Error: No debug probe detected. #2467
Replies: 1 comment 4 replies
-
You need a STLink with swd.... |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using the below board.
https://robu.in/product/stm32f401ccu6-minimum-system-board-microcomputer-stm32-arm-core-board/
Program I tried to upload
void setup() {
pinMode(B10, OUTPUT);
}
void loop() {
digitalWrite(B10, HIGH); delay(1000);
digitalWrite(B10, LOW); delay(1000);
}
Resulted monitor while upload,
Sketch uses 10816 bytes (4%) of program storage space. Maximum is 262144 bytes.
Global variables use 880 bytes (1%) of dynamic memory, leaving 64656 bytes for local variables. Maximum is 65536 bytes.
-------------------------------------------------------------------
STM32CubeProgrammer v2.17.0
-------------------------------------------------------------------
Error: No debug probe detected.
Expected behavior
Upload completed
Obtained result below.
Desktop (please complete the following information):
Board (please complete the following information):
Please excuse if its a asimple solution. I read through the forums for hours with no hints.
I registered my acccount with stm32duino forum but seems it will take time for ur team to approve my request. so there will be a delay to raise this question. so I posted here. please help.
Beta Was this translation helpful? Give feedback.
All reactions