avr-oxide 0.0.1

An extremely simply Rusty operating system for AVR microcontrollers
/* debugled.rs
 *
 * Developed by Tim Walls <tim.walls@snowgoons.com>
 * Copyright (c) All Rights Reserved, Tim Walls
 */
//! For debugging using an attached LED :-).  Methods should be entirely
//! static and require no setup/working environment/etc.

// Imports ===================================================================

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

// Code ======================================================================
pub trait DebugLed {
  fn on();

  fn off();

  fn toggle();
}

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