Presentation is loading. Please wait.

Presentation is loading. Please wait.

RX Watchdog Timer (WDT)

Similar presentations


Presentation on theme: "RX Watchdog Timer (WDT)"— Presentation transcript:

1 RX Watchdog Timer (WDT)
Hello and welcome to this Renesas Interactive course that covers the Watchdog timer found on RX MCUs. 2/22/2011 Rev. 1.00 © 2011 Renesas Electronics America Inc. All rights reserved. 00000-A

2 Contained in this Module Block Diagram Clock Options Operating Modes
Agenda This course contains a description of specific features of the RX Watchdog Timer. For basic WDT technology and terms refer to WDT Overview Course. For an overview of WDT features for a specific group refer to the RX Technical Marketing Overview Course. This course describes interrupt options, clock inputs, and other specific items Contained in this Module Block Diagram Clock Options Operating Modes Starting & Refreshing Writing to WDT Registers Usage Notes Using the WDT & IWDT Together This course covers specific features of the watchdog timer on RX MCUs. If you need basic information on watchdog timers please refer to the Watchdog Timer Overview Course. If you are looking for information that applies to a specific RX group please refer to that group's Technical Marketing Overview Course. In this course we will cover the watchdog timer’s block diagram, the available clocking options, the different operating modes available, how to start and refresh the watchdog, how to write to watchdog registers, general usage notes, and how to use the watchdog timer with the RX’s independent watchdog timer. © 2011 Renesas Electronics America Inc. All rights reserved.

3 Block Diagram This figure shows the block diagram of a typical WDT on an RX MCU. First notice that the WDT sits on the peripheral bus. At the bottom you will see the WINA and WINB registers that have arrows pointing to other watchdog timer registers. We will discuss the reason for this later. The other three watchdog timer registers are shown here. The TCNT is the watchdog timer counter register and RSTCSR and TCSR are registers for controlling the watchdog timer. At the top right of the figure you will see the different clock inputs that are available to the watchdog timer. Notice that they are all based upon the RX's peripheral clock. At the top left you will see the watchdog timer's interrupt control block. Depending on the configuration the watchdog timer can either trigger an interrupt or output an overflow signal when a timer overflow occurs. Below the interrupt control block is the reset control block. Notice that the RSTCSR register is feeding into this block. This register controls whether the watchdog timer sends a reset signal to the MCU when a timer overflow occurs. © 2011 Renesas Electronics America Inc. All rights reserved.

4 Clock chosen using CKS bit field in TCSR register
Clock Options Clock chosen using CKS bit field in TCSR register Which clock is used for watchdog timer counting is chosen in the TCSR register. Each option is based upon the peripheral clock. Depending on which divisor is chosen the timeout period can range from as short as 20.4us or as long as 668.5ms. These numbers are calculated given a peripheral clock of 50MHz and will scale linearly. For instance, if the peripheral clock were cut in half to 25MHz then the shortest timeout period would be 40.8us and the longest 1337ms. © 2011 Renesas Electronics America Inc. All rights reserved.

5 Modes Watchdog Timer Mode Interval Timer Mode
WDTOVF# signal is output on MCU pin on overflow Can choose to issue reset on overflow Interval Timer Mode WOVI interrupt is generated The watchdog timer has 2 modes that can it operate in. The user chooses which mode they want to use by changing the timer mode select bit in the TCSR register. The first mode is watchdog timer mode. In this mode when the watchdog timer overflows the WDTOVF signal is output and an internal reset can be generated. Whether a reset is generated depends on the setting of the ‘reset enable’ bit in the RSTCSR register. The other mode is Interval Timer mode. In this mode the watchdog timer generates the watchdog overflow interrupt every time an overflow occurs. There is no option for the watchdog to reset the MCU in this mode. © 2011 Renesas Electronics America Inc. All rights reserved.

6 Starting & Refreshing Starting Refreshing 0 0 0 0 0 0 0 0
Starting and refreshing the watchdog timer are simple tasks. To start the timer the user needs to set the TME bit in the TCSR register to 1. To refresh the watchdog timer, also known as kicking the dog, the user should write to the timer counter register. Since the watchdog timer is an up-counting timer, the user should write all zeros to the register. © 2011 Renesas Electronics America Inc. All rights reserved.

7 Writing Registers Writing to the watchdog's registers requires extra care compared to writing other peripheral registers. For example, the TCNT and TCSR registers are both written using the Write Window A register. When writing this register the user should make sure to use a word transfer instead of a byte transfer even though the TCNT and TCSR registers are 8 bits each. The top 8 bits, bits 8 – 15, are what distinguish which register is written. To write the TCNT register, hex 5A should be in top byte. If the user was refreshing the watchdog timer they would put hex 5A in the top byte and hex 00 in the lower byte. To instead write the TCSR register, hex A5 should be in the top byte. The RSTCSR register is written to using the Write Window B register and it must also be written using a word transfer. This time, instead of writing to two different registers, the top 8 bits distinguish which bit is written in the RSTCSR register. To write the RSTE bit hex 5A should be in the top byte. To clear the WOVF bit hex A5 should be used. While writing the registers requires extra attention, reading the registers can be done with byte accesses just like with other peripheral registers. © 2011 Renesas Electronics America Inc. All rights reserved.

8 System reset by WDTOVF# signal
Usage Notes System reset by WDTOVF# signal Using with low power modes On this slide some general usage notes for the watchdog timer are listed. The first is that the WDTOVF# signal should not be input directly to the reset pin on the MCU. This will cause the MCU to not be correctly initialized. Instead, it is recommended that the WDTOVF# signal be sent out as a reset signal for the entire system which will then cause the MCU to be reset in-turn. Users should also be careful when using low power modes along with the watchdog. If the watchdog is operating in watchdog timer mode and an attempt to transition into software standby mode is made, the MCU will not transition into software standby mode. Instead the MCU will transition into either sleep mode or all-module clock-stop mode depending on the MCU’s configuration. In order to transition into software standby mode when the watchdog is in watchdog timer mode, the user must first halt the watchdog by clearing the Timer Enable bit in the TCSR register. This only applies to watchdog timer mode, if interval timer mode is used then software standby mode can be entered into with no problems. © 2011 Renesas Electronics America Inc. All rights reserved.

9 Use WDT as software reset
Using with IWDT Use WDT as software reset Use IWDT as hard reset The RX has two watchdog timer units: the watchdog timer and the independent watchdog timer. While the independent watchdog timer only has the option of resetting the MCU when a timeout occurs, the watchdog timer can trigger an interrupt. Using these two together the watchdog timer could be used as a controlled shutdown mechanism while the independent watchdog could still offer the hard reset functionality. With this setup the standard watchdog could be used to detect errors in the user’s system that would only be recreated after a hard reset has occurred. © 2011 Renesas Electronics America Inc. All rights reserved.

10 Summary Block Diagram Clock Options Watchdog Modes
Starting & Refreshing Writing WDT Registers Usage Notes Using with IWDT Thanks for Viewing! In summary, in this course we covered: the block diagram of the RX's watchdog timer, The clock options available, The 2 different modes the watchdog supports How to start and refresh the watchdog, How to write the watchdog’s registers Usage notes for using the watchdog overflow signal and using the watchdog with low power modes And how you could use the watchdog timer along with the independent watchdog timer peripheral We would like to thank for viewing this course. You may consider viewing the Technical Marketing Overview Course for more information on RX MCUs. © 2011 Renesas Electronics America Inc. All rights reserved.

11 RX WDT Quiz

12 © 2011 Renesas Electronics America Inc. All rights reserved.
Thank You Thank You © 2011 Renesas Electronics America Inc. All rights reserved.


Download ppt "RX Watchdog Timer (WDT)"

Similar presentations


Ads by Google