how to get started with stm32f103

Post here first, or if you can't find a relevant section!
ag123
Posts: 1653
Joined: Thu Dec 19, 2019 5:30 am
Answers: 24

Re: how to get started with stm32f103

Post 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);
};
nr4ps
Posts: 6
Joined: Sun Oct 30, 2022 7:20 pm

Re: how to get started with stm32f103

Post by nr4ps »

Oh my gosh. After all that, using a different USB cable fixed the problem. Thanks for the suggestions, everyone.
gabrielwong1991
Posts: 2
Joined: Sun Nov 06, 2022 12:10 am

Re: how to get started with stm32f103

Post 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...
Post Reply

Return to “General discussion”