summaryrefslogtreecommitdiffstats
path: root/tests/common/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/common/mod.rs')
-rw-r--r--tests/common/mod.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/common/mod.rs b/tests/common/mod.rs
index 0efbb8a..0a97690 100644
--- a/tests/common/mod.rs
+++ b/tests/common/mod.rs
@@ -14,12 +14,13 @@ impl Register {
}
pub struct BitFlags;
+#[allow(unused)]
impl BitFlags {
//pub const OP_MODE : u16 = 0b0000_0001_0000_0000;
pub const OS : u16 = 0b1000_0000_0000_0000;
- //pub const DR2 : u16 = 0b0000_0000_1000_0000;
- //pub const DR1 : u16 = 0b0000_0000_0100_0000;
- //pub const DR0 : u16 = 0b0000_0000_0010_0000;
+ pub const DR2 : u16 = 0b0000_0000_1000_0000;
+ pub const DR1 : u16 = 0b0000_0000_0100_0000;
+ pub const DR0 : u16 = 0b0000_0000_0010_0000;
}
pub struct Config {