Rename the led module to led_ring

This commit is contained in:
Paul van Tilburg 2019-03-15 23:30:04 +01:00
parent a795bf910f
commit 7b9ee69d1a
2 changed files with 2 additions and 2 deletions

View File

@ -5,9 +5,9 @@
extern crate panic_semihosting;
mod led;
mod led_ring;
use crate::led::{Led, LedRing};
use crate::led_ring::{Led, LedRing};
use core::fmt::Write;
use cortex_m_semihosting::hprintln;
use hal::block;