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)
Links for more resources:
