diff --git a/src/modules/timer/timer8.rs b/src/modules/timer/timer8.rs index fa09717..15bfb98 100644 --- a/src/modules/timer/timer8.rs +++ b/src/modules/timer/timer8.rs @@ -36,14 +36,21 @@ pub trait Timer8 : Sized { /// For example, TIFR0. type InterruptFlag: Register; + /// Bit 0 of the clock select mask. const CS0: Mask; + /// Bit 1 of the clock select mask. const CS1: Mask; + /// Bit 2 of the clock select mask. const CS2: Mask; + /// Bit 0 of the waveform generation mode mask. const WGM0: Mask; + /// Bit 1 of the waveform generation mode mask. const WGM1: Mask; + /// Bit 2 of the waveform generation mode mask. const WGM2: Mask; + /// Output compare interrupt enable flag. const OCIEA: Mask; }