avr-oxide 0.3.1

An extremely simple Rusty operating system for AVR microcontrollers
/* mod.rs
 *
 * Developed by Tim Walls <tim.walls@snowgoons.com>
 * Copyright (c) All Rights Reserved, Tim Walls
 */
//! Private data structures used within Oxide.  These may have messier or
//! less safe semantics (e.g. not being threadsafe) than anything we might
//! expose externally.

// Imports ===================================================================
pub(crate) mod ringq;
pub(crate) mod delayq;
pub(crate) mod binaryringq;

// Declarations ==============================================================

// Code ======================================================================

// Tests =====================================================================