Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 568 Bytes

File metadata and controls

11 lines (8 loc) · 568 Bytes

GreenTower, Spring 2025

Firmware code written for GreenTower, a Hardware Project for Spring 2025. This is an ESP-IDF/FreeRTOS project.

Project structure

All project code is contained in /main.

  • /main/drivers contains abstractions for individual hardware peripherals.
    • multiple peripherals make use of LEDC channels for PWM timing, and to abstract the creation of those, /main/drivers/ledc_channel.c/.h is used.
  • /main/main.c contains the main app entrypoint.
  • /main/utils.h contains utility functions.