avr_328p_hal 2.0.0

A bare-metal AVR-ATmega328p HAL written in Rust with zero dependencies with fast compilation times, using direct register manipulation.
Documentation
1
2
3
4
5
6
7
8
9
10
// Copyright (c) 2026 [Darell Ethan Kiganga]
// SPDX-License-Identifier: MIT

#![no_std]

pub mod gpio;
pub mod timers;
pub mod usart0;
pub mod adc;
pub mod lcd;