Page 1 of 1

How to study STM32?

Posted: Mon Dec 03, 2018 9:23 pm
by BirdKing
Hello, everyone. I want to study STM32. But a lot of material introduces the STM32. I don't know which one I should choose to see firstly. In other words, for STM32 study, what is the best learning steps?

Re: How to study STM32?

Posted: Tue Dec 04, 2018 4:15 am
by helenali
You can try a simple project firstly.

e.g. Light up LEDs or Blink LEDs on the STM32 board
Both of the following two boards come with Led. Just try to create a simple blink LED program using STM32 board.

STM32F103
STM32F411 NUCLEO

Re: How to study STM32?

Posted: Wed Dec 05, 2018 10:11 am
by BirdKing
Thanks for your answer. I have F103B board now. But I still confused about what you said. Need I learn some pdf firstly?

Re: How to study STM32?

Posted: Thu Dec 06, 2018 6:14 am
by gandalf
BirdKing wrote:
Wed Dec 05, 2018 10:11 am
Thanks for your answer. I have F103B board now. But I still confused about what you said. Need I learn some pdf firstly?
how about post your eva-board spec?

Re: How to study STM32?

Posted: Mon Dec 10, 2018 12:41 am
by BirdKing
STM32F103. I think I could learn the core spec.

Re: How to study STM32?

Posted: Thu Dec 13, 2018 6:31 am
by stm32
It can be implemented a simple LED blinking programe with the assist of STM32CUBEMX, and only two lines of code is enough.

Code: Select all

	HAL_GPIO_TogglePin(GPIOC,GPIO_PIN_13);
	/* Insert delay 1000 ms */
	  HAL_Delay(1000);

Re: How to study STM32?

Posted: Mon Apr 15, 2019 6:52 am
by HUGAZ
I want to learn real micro controller programming with STM32. Which library should I use.

Re: How to study STM32?

Posted: Thu May 09, 2019 9:01 am
by DaHuFa
HUGAZ wrote:
Mon Apr 15, 2019 6:52 am
I want to learn real micro controller programming with STM32. Which library should I use.
Which library? I think you should study specs firstly.