avr-oxide 0.0.3

An extremely simply Rusty operating system for AVR microcontrollers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* mod.rs
 *
 * Developed by Tim Walls <tim.walls@snowgoons.com>
 * Copyright (c) All Rights Reserved, Tim Walls
 */
//! Abstraction of the hardware devices attached to an AVR microcontroller

// Imports ===================================================================
pub mod generic;
pub mod concurrency;

#[cfg(feature="atmega4809")]
pub mod atmega4809;