Page 2 of 2

Re: how to get started with stm32f103

Posted: Wed Nov 02, 2022 4:00 am
by ag123
did you blink a led on the board?
that is the hello world of the *duino world

Code: Select all

void setup() {
	pinMode(LED_BUILTIN, OUTPUT);
}

void loop() {
	digitalWrite(LED_BUILTIN, ! digitalRead(LED_BUILTIN));
	delay(10);
};

Re: how to get started with stm32f103

Posted: Wed Nov 02, 2022 2:45 pm
by nr4ps
Oh my gosh. After all that, using a different USB cable fixed the problem. Thanks for the suggestions, everyone.

Re: how to get started with stm32f103

Posted: Sun Nov 06, 2022 3:54 am
by gabrielwong1991
I have the same problem as you, cant get it working with STM core but it works on Roger core! USB cable didn't fix that...