Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 793 Bytes

README.md

File metadata and controls

29 lines (17 loc) · 793 Bytes

freertos v9.0.0 for stm32f103vct6

This repo contains freertos release 9.0.0 configured for a stm32f103vct6 board, named Hy-MiniSTM32V. It should run on any stm32f103 with a few changes.

There are two tasks running. One is blinking two LEDs, the other is sending stuff via USART1.

USART1 also is configured to receive in interrupt-mode. it collects the received chars and if 'GBL\r' was sent, the controller will jump to it's bootloader. See gbl.py for how to send, usart.c for how to receive and jump to bootloader.

Here's more information: https://www.mikrocontroller.net/articles/STM32_jump_to_bootloader

size output/main.elf

 text    data     bss     dec     hex filename
 4772      24   19252   24048    5df0 output/main.elf

CHANGELOG:

  • 2016 jul 01 created