aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/STM32/LLD/xWDGv1
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2015-12-04 12:42:28 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2015-12-04 12:42:28 +0000
commit00edb39399bbd765f08bdc917aaa6624af1f7778 (patch)
treecdda97df8189369e4399bb6fe0a8b11cb6ccb586 /os/hal/ports/STM32/LLD/xWDGv1
parenta82ad63d7809bb374473d214e8b6fe534b58e0e7 (diff)
downloadChibiOS-00edb39399bbd765f08bdc917aaa6624af1f7778.tar.gz
ChibiOS-00edb39399bbd765f08bdc917aaa6624af1f7778.tar.bz2
ChibiOS-00edb39399bbd765f08bdc917aaa6624af1f7778.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8566 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/STM32/LLD/xWDGv1')
-rw-r--r--os/hal/ports/STM32/LLD/xWDGv1/wdg_lld.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/os/hal/ports/STM32/LLD/xWDGv1/wdg_lld.h b/os/hal/ports/STM32/LLD/xWDGv1/wdg_lld.h
index 828808d5e..8c108b5dd 100644
--- a/os/hal/ports/STM32/LLD/xWDGv1/wdg_lld.h
+++ b/os/hal/ports/STM32/LLD/xWDGv1/wdg_lld.h
@@ -124,11 +124,14 @@ typedef struct {
* @details See the STM32 reference manual for details.
*/
uint32_t rlr;
+#if STM32_IWDG_IS_WINDOWED || defined(__DOXYGEN__)
/**
* @brief Configuration of the IWDG_WINR register.
* @details See the STM32 reference manual for details.
+ * @note This field is not present in F1, F2, F4, L1 sub-families.
*/
uint32_t winr;
+#endif
} WDGConfig;
/**