From db3c0870bb09db792e7e8fb735233a0e2ebf4e8d Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Fri, 11 Nov 2011 21:42:22 +0100 Subject: stm32/crc.h: Document reserved bits. --- include/libopencm3/stm32/crc.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/include/libopencm3/stm32/crc.h b/include/libopencm3/stm32/crc.h index 5ad866e..a4fa7bb 100644 --- a/include/libopencm3/stm32/crc.h +++ b/include/libopencm3/stm32/crc.h @@ -36,17 +36,23 @@ /* --- CRC_DR values ------------------------------------------------------- */ -/* Bits[31:0] Data register */ +/* Bits [31:0]: Data register */ /* --- CRC_IDR values ------------------------------------------------------ */ -/* Bits[7:0] General-purpose 8-bit data register bits */ +/* Bits [31:8]: Reserved */ + +/* Bits [7:0]: General-purpose 8-bit data register bits */ /* --- CRC_CR values ------------------------------------------------------- */ +/* Bits [31:1]: Reserved */ + /* RESET bit */ #define CRC_CR_RESET (1 << 0) /* --- CRC function prototypes --------------------------------------------- */ +/* TODO */ + #endif -- cgit v1.2.3