Changeset 988 for branches/reconfiguration
- Timestamp:
- May 13, 2015, 10:28:06 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/reconfiguration/modules/vci_cc_vcache_wrapper/caba/source/src/vci_cc_vcache_wrapper.cpp
r970 r988 842 842 r_dcache_clack_req = false; 843 843 844 // Reset watchdog timer threshold to max value845 r_dcache_wdt_max = std::numeric_limits<uint32_t>::max();844 // Reset watchdog timer (watchdog mechanism is deactivated) 845 r_dcache_wdt_max = 0; 846 846 r_dcache_wdt_timeout = 0; 847 847 … … 2251 2251 2252 2252 // watchdog timeout signal 2253 bool dcache_watchdog_timeout = (r_dcache_wdt.read() == r_dcache_wdt_max.read()); 2253 // when wdt_max is zero, the watchdog mechanism is deactivated. 2254 bool dcache_watchdog_timeout = (r_dcache_wdt_max.read() > 0) && 2255 (r_dcache_wdt.read() == r_dcache_wdt_max.read()); 2254 2256 2255 2257 switch (r_dcache_fsm.read())
Note: See TracChangeset
for help on using the changeset viewer.