-
Notifications
You must be signed in to change notification settings - Fork 1k
Description
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
Desktop (please complete the following information):
- OS: Win 11
- Arduino IDE version: 2.3.2
- STM32 core version: 2.8.1
- Upload method: SWD
Board (please complete the following information):
- Name: STM32F401CCU6
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.

