Skip to content

psuieee/stm32-workshop1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

STM32 SP26 Workshop 1: Intro to STM32

Installation for STM32CubeIDE: ST Microelectronics software installation (Make sure to install version 1.19.0)

F411RE basic details and pinout: NUCLEO-F411RE

In order to use the printf() function your code IT IS CRUCIAL THAT YOU DO THIS => copy into main.c

int _write(int file, char* ptr, int len) {
	for(int i = 0; i < len; i++) {
		ITM_SendChar((*ptr++));
	}
	return len;
}

(This is also in the starter.c file)

LED blink circuit

LED blink circuit

Links for more resources:

About

Any links and files necessary for the first STM32 workshop SP26

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages