From 4f3d51cb51b373dcbd809ef16077d8e06c16a02d Mon Sep 17 00:00:00 2001 From: Bastian de Byl Date: Wed, 12 Feb 2020 14:34:16 -0500 Subject: [PATCH] stm32_part1 began on first portion of timer write-up --- content/post/stm32-part1.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 content/post/stm32-part1.md diff --git a/content/post/stm32-part1.md b/content/post/stm32-part1.md new file mode 100644 index 0000000..f53f683 --- /dev/null +++ b/content/post/stm32-part1.md @@ -0,0 +1,18 @@ +--- +title: "STM32 with libopencm3 - Part 1: Simple Timer" +date: 2020-02-12 +lastmod: 2020-02-12 +draft: true +tags: ["libopencm3", "stm32", "tutorial"] +categories: ["Tutorial"] +contentCopyright: false +hideHeaderAndFooter: false +--- +After having reviewed [part 0](/post/stm32-part0) of this series, we can now +explore controlling GPIO with the hardware timers! Other tutorials have used the +Systick timer as a good introduction to adding a delay for blinking an +LED. However, it is my belief that this leads to confusion for beginners and +only opens the door to misunderstandings. That being said, we will be using +timers and their associated GPIO ports with Alternate Function modes. + +