Skip to content

joshuawalker3/STM32-Projects

Repository files navigation

Projects Using STM32 Microcontroller

Overview

This repository contains a collection of projects for the STM32F103C8T6 and STM32F767ZI microcontrollers. The projects are meant to showcase my abilities and understanding of both the hardaware and software associated with embedded programming with STM32 microcontrollers.

A general overview is provided in this REAMDE with each project directory containing a project level README that provides further detail on the project.

RTOS Skills Used

  • Task creation/termination
  • Semaphores
  • One shot timer

Signal Types Used

  • GPIO
  • PWM
  • ADC

Communication Protocols Used

  • I2C

Interprocess Communication Methods Used

  • DMA

Tools used

Software used

Hardware

For development of device drivers, I used a STM32F103C8T6 development board. For the development of Free RTOS applications I used a STM32F767ZI development board.

Note

Development of device drivers has been moved to this repo

General Software Used

Applications were written using the STM32CubeIDE environement and the automatically generated STM32 HAL was utilized. When other software or API's are used (i.e. CSMIS-RTOS) they will be listed in the projects software section.

Projects

Blinky

This project blinks the USR-LED connected to pin PC13 at a frequency of 1 Hz. It is simple project using basic GPIO HAL functions.

Crystal-LCD

This program utilizes the I2C communication protocol to print data to an LCD. It uses a custom driver for the LCD functions.

FreeRTOS-Blinky

This program utilizes CMSIS-RTOS to create two tasks that blink two seperate LEDs. A timer is used to create a new task and delete the previous two.

ADC-DMA-LED-Dimmer

This program utilizes DMA to store ADC data collected from a potentiometer to generate a PWM signal to drive a LED. Code flow is controlled by DMA interrupt and a binary semaphore.

Temp-Humidity-I2C

This program utilizes a queue to transfer data between an AHT10 sensor and an LCD with both being connected to the same I2C bus.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages