1
0
mirror of https://github.com/rfivet/stm32bringup.git synced 2024-06-26 17:35:24 +00:00
Bring up code for low end STM32 micro-controllers https://rfivet.github.io/stm32bringup/
Go to file
2020-12-08 16:50:46 +08:00
.gitignore Entry at reset, C startup, user LED driven by System Tick on STM32F030F4. 2020-11-24 10:48:35 +08:00
blink.c Entry at reset, C startup, user LED driven by System Tick on STM32F030F4. 2020-11-24 10:48:35 +08:00
board.c Board mapping abstraction. 2020-11-28 12:54:11 +08:00
boot.c Entry at reset, C startup, user LED driven by System Tick on STM32F030F4. 2020-11-24 10:48:35 +08:00
clocks.c Configure clocks during initialization: HSI, HSE, PLL HSI, PLL HSE 2020-12-07 17:36:11 +08:00
cstartup.c Entry at reset, C startup, user LED driven by System Tick on STM32F030F4. 2020-11-24 10:48:35 +08:00
f030f4.ld Insure .text section ends on a word boundary. 2020-11-30 10:07:59 +08:00
hello.c Avoid warning if compiled with -Wstrict-prototypes. 2020-12-02 13:03:38 +08:00
init.c Entry at reset, C startup, user LED driven by System Tick on STM32F030F4. 2020-11-24 10:48:35 +08:00
ledon.c Entry at reset, C startup, user LED driven by System Tick on STM32F030F4. 2020-11-24 10:48:35 +08:00
ledtick.c Entry at reset, C startup, user LED driven by System Tick on STM32F030F4. 2020-11-24 10:48:35 +08:00
LICENSE Add copyright holder and year 2020-11-24 09:13:57 +08:00
Makefile Interrupt driven serial transmission. 2020-12-08 16:45:48 +08:00
printf.c uptime -- tells how long the system has been running 2020-12-05 08:13:29 +08:00
putchar.c uptime -- tells how long the system has been running 2020-12-05 08:13:29 +08:00
puts.c Standard C output functions as library 2020-12-05 18:08:25 +08:00
README.md Add link to web pages for code explanation. 2020-11-24 11:18:33 +08:00
startup.c Entry at reset, C startup, user LED driven by System Tick on STM32F030F4. 2020-11-24 10:48:35 +08:00
startup.txeie.c Interrupt driven serial transmission. 2020-12-08 16:45:48 +08:00
success.c Entry at reset, C startup, user LED driven by System Tick on STM32F030F4. 2020-11-24 10:48:35 +08:00
system.h uptime -- tells how long the system has been running 2020-12-05 08:13:29 +08:00
txeie.c Serial Transmission under interrupt. 2020-12-08 16:50:46 +08:00
uplow.1.c Use libgcc.a for integer division as Cortex-M0 has no support for it. 2020-12-03 11:15:47 +08:00
uplow.2.c uptime -- tells how long the system has been running 2020-12-05 08:13:29 +08:00
uptime.1.c uptime -- tells how long the system has been running 2020-12-05 08:13:29 +08:00
uptime.c uptime -- tells how long the system has been running 2020-12-05 08:13:29 +08:00
usart1tx.c Asynchronous serial transmission 2020-11-28 12:58:58 +08:00

stm32bringup

Bring up code for low end STM32 micro-controllers

This repository contains the code explained here.