▼ content | |
▼ anatomy-of-embedded-firmware | |
▼ layout-and-documentation-examples | |
filename.c | The brief description goes here, keep it relatively short and to the point |
filename.h | The brief description goes here, keep it relatively short and to the point |
main.c | Main source file where main() routine is called |
pin_defines.h | Pin and port definitions for the project |
▼ getting-started | |
▼ source | |
blink.c | Driver for example application from Getting Started with Blink. This file also serves to demonstrate the anatomy of embedded firmware |
blink.h | Driver for example application from Getting Started with Blink. This file also serves to demonstrate the anatomy of embedded firmware |
main.c | Main routine for the Blink example application in Getting Started. This file also serves to demonstrate the anatomy of embedded firmware |
pin_defines.h | Pin and port definitions for Getting Started with Blink. This file also serves to demonstrate the anatomy of embedded firmware |
▼ modules | |
▼ avr-peripheral-features | |
▼ i2c | |
atmega_i2c.c | I2C communications driver for AVR MCU's |
atmega_i2c.h | I2C communications driver for AVR MCU's |
pin_defines.h | Definitions for pin mapping |
▼ spi | |
atmega_spi.c | Driver for SPI communication between the ATmega328P and other SPI compatible devices |
atmega_spi.h | Driver for SPI communication between the ATmega328P and other SPI compatible devices |
pin_defines.h | Definitions for pin mapping for SPI with the ATmega328P |
▼ timer-counter | |
▼ am-radio-transmitter | |
► example | |
am_radio.c | Driver for a small, low power AM radio transmitter, to broadcast monophonic square wave tones over a short distance |
am_radio.h | Driver for a small, low power AM radio transmitter, to broadcast monophonic square wave tones over a short distance. This project was inspired by the book "Make: AVR Programming" by Elliot Williams |
main.c | |
pin_defines.h | Definitions for pins and ports. Connect a small wire to ANTENNA pin, you can boost the signal by touching the wire with your fingers, as the human body can act as a remarkably good antenna. Tune an AM radio to the carrier frequency to pick up the transmission |
scale.h | Contains the count values required for the note pitches to work at 8MHZ F_CPU |
sweet_child_o_mine.c | This file contains the implementation of the sequencing to reproduce the intro to Sweet Child O' Mine by Guns N Roses |
sweet_child_o_mine.h | |
▼ digital-clock | |
► example | |
digital_clock.c | Driver to provide setup and configuration of the timer/counter hardware on the ATmega328P |
digital_clock.h | Driver to provide setup and configuration of the timer/counter hardware on the ATmega328P |
hd44780_lcd.c | Driver for the HD44780 based 16x2 liquid crystal display |
hd44780_lcd.h | Driver for the HD44780 based 16x2 liquid crystal display |
main.c | |
pin_defines.h | Definitions for pins and ports |
▼ usart | |
▼ example | |
main.c | Example main routine demonstrating the USART driver |
usart.c | Driver file providing core USART communication between the target MCU and your PC. This file was adapted from Elliot Williams' Github repo hexagon5un. (link in the see also section below) |
usart.h | Driver file providing core USART communication between the target MCU and your PC. This file was adapted from Elliot Williams' Github repo hexagon5un (link in the see also section below). NOTE: This driver does involve blocking waits, this may be improved on in a later version |
▼ data-converters | |
▼ mcp48x2_dac | |
▼ example | |
atmega_spi.c | Driver for SPI communication between the ATmega328P and other SPI compatible devices |
atmega_spi.h | Driver for SPI communication between the ATmega328P and other SPI compatible devices |
log_system.c | Driver file providing logging functionality over USART, to print debug messages and values to a teminal program on your PC |
log_system.h | Driver file providing logging functionality over USART, to print debug messages and values to a teminal program on your PC |
main.c | Example main routine demonstrating the mcp48x2 DAC driver |
mcp48x2_dac.c | Driver for the MCP4812 10 bit DAC (digital to analog converter) chip |
mcp48x2_dac.h | Driver for the MCP4812 10 bit DAC (digital to analog converter) chip |
pin_defines.h | Definitions for pin mapping (for mcp4812_dac) |
usart.c | Driver file providing core USART communication between the target MCU and your PC |
usart.h | Driver file providing core USART communication between the target MCU and your PC |
▼ debug-tools | |
▼ log-system | |
▼ example | |
log_system.c | Driver file providing logging functionality over USART, to print debug messages and values to a teminal program on your PC |
log_system.h | Driver file providing logging functionality over USART, to print debug messages and values to a teminal program on your PC |
main.c | Main routine for log_system example application |
usart.c | Driver file providing core USART communication between the target MCU and your PC. This file was adapted from Elliot Williams' Github repo hexagon5un. (link in the see also section below) |
usart.h | Driver file providing core USART communication between the target MCU and your PC. This file was adapted from Elliot Williams' Github repo hexagon5un (link in the see also section below). NOTE: This driver does involve blocking waits, this may be improved on in a later version |
▼ displays | |
▼ hd44780_lcd | |
▼ example | |
hd44780_lcd.c | Driver for the HD44780 based 16x2 liquid crystal display |
hd44780_lcd.h | Driver for the HD44780 based 16x2 liquid crystal display |
main.c | Example main routine demonstrating the HD44780 based 16x2 liquid crystal display |
pin_defines.c | |
pin_defines.h | Definitions for pin mapping (for hd44780_lcd) |
▼ sensors | |
▼ bme280_sensor | |
▼ example | |
atmega_i2c.c | I2C communications driver for AVR MCU's |
atmega_i2c.h | I2C communications driver for AVR MCU's |
bme280.c | |
bme280.h | |
log_system.c | Driver file providing logging functionality over USART, to print debug messages and values to a teminal program on your PC |
log_system.h | Driver file providing logging functionality over USART, to print debug messages and values to a teminal program on your PC |
main.c | Example main routine demonstrating the BME280 sensor |
pin_defines.h | Definitions for pin mapping |
usart.c | Driver file providing core USART communication between the target MCU and your PC. This file was adapted from Elliot Williams' Github repo hexagon5un. (link in the see also section below) |
usart.h | Driver file providing core USART communication between the target MCU and your PC. This file was adapted from Elliot Williams' Github repo hexagon5un (link in the see also section below). NOTE: This driver does involve blocking waits, this may be improved on in a later version |
▼ ccs811_sensor | |
▼ example | |
ccs811.c | Driver for the CCS811 gas sensor |
ccs811.h | Driver for the CCS811 gas sensor |
i2c.c | I2C communications driver for AVR MCU's |
i2c.h | I2C communications driver for AVR MCU's |
log_system.c | Driver file providing logging functionality over USART, to print debug messages and values to a teminal program on your PC |
log_system.h | Driver file providing logging functionality over USART, to print debug messages and values to a teminal program on your PC |
main.c | Example main routine to demonstrate taking readings using the CCS811 gas sensor.
|
pin_defines.h | Definitions for pin mapping (for CCS81 gas sensor) |
usart.c | Driver file providing core USART communication between the target MCU and your PC |
usart.h | Driver file providing core USART communication between the target MCU and your PC |
modules.h | |