avr-oxide 0.2.0

An extremely simple Rusty operating system for AVR microcontrollers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* 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;

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

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

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