stm32duino / Arduino_Core_STM32

STM32 core support for Arduino
https://github.com/stm32duino/Arduino_Core_STM32/wiki
Other
2.86k stars 979 forks source link

Unable to upload blink program, Error: No debug probe detected. #2466

Closed Murugesh-Hobbyist closed 4 months ago

Murugesh-Hobbyist commented 4 months ago

I'm using the below board. https://robu.in/product/stm32f401ccu6-minimum-system-board-microcomputer-stm32-arm-core-board/

Screenshot - 28-07-2024 , 15_42_26

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. Screenshot - 28-07-2024 , 16_46_26

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.