aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/TIVA/LLD/WDT/hal_wdg_lld.c
diff options
context:
space:
mode:
authormarcoveeneman <marco-veeneman@hotmail.com>2016-10-27 22:55:17 +0200
committermarcoveeneman <marco-veeneman@hotmail.com>2016-10-27 22:55:17 +0200
commit223f46589016f2dce6a29cbd00d9020f80d2a556 (patch)
tree66653c078459a091ade80f5a6434cad9ee1c2741 /os/hal/ports/TIVA/LLD/WDT/hal_wdg_lld.c
parent94fe96d3ae4a8d05b7d752f9ff8e0bd4b3de25d6 (diff)
downloadChibiOS-Contrib-223f46589016f2dce6a29cbd00d9020f80d2a556.tar.gz
ChibiOS-Contrib-223f46589016f2dce6a29cbd00d9020f80d2a556.tar.bz2
ChibiOS-Contrib-223f46589016f2dce6a29cbd00d9020f80d2a556.zip
Replaced custom register bitfield macros by TivaWare bitfield macros.
Diffstat (limited to 'os/hal/ports/TIVA/LLD/WDT/hal_wdg_lld.c')
-rw-r--r--os/hal/ports/TIVA/LLD/WDT/hal_wdg_lld.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/ports/TIVA/LLD/WDT/hal_wdg_lld.c b/os/hal/ports/TIVA/LLD/WDT/hal_wdg_lld.c
index 1fc86f2..ddd01e0 100644
--- a/os/hal/ports/TIVA/LLD/WDT/hal_wdg_lld.c
+++ b/os/hal/ports/TIVA/LLD/WDT/hal_wdg_lld.c
@@ -62,7 +62,7 @@ static void serve_interrupt(WDGDriver *wdgp)
mis = HWREG(wdgp->wdt + WDT_O_MIS);
- if (mis & MIS_WDTMIS) {
+ if (mis & WDT_MIS_WDTMIS) {
/* Invoke callback, if any */
if (wdgp->config->callback) {
if (wdgp->config->callback(wdgp)) {
@@ -159,10 +159,10 @@ void wdg_lld_start(WDGDriver *wdgp)
HWREG(wdgp->wdt + WDT_O_TEST) = wdgp->config->test;
wdgTivaSyncWrite(wdgp);
- HWREG(wdgp->wdt + WDT_O_CTL) |= CTL_RESEN;
+ HWREG(wdgp->wdt + WDT_O_CTL) |= WDT_CTL_RESEN;
wdgTivaSyncWrite(wdgp);
- HWREG(wdgp->wdt + WDT_O_CTL) |= CTL_INTEN;
+ HWREG(wdgp->wdt + WDT_O_CTL) |= WDT_CTL_INTEN;
wdgTivaSyncWrite(wdgp);
}