diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2008-12-30 23:53:35 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2008-12-30 23:53:35 +0000 |
| commit | 5d3a035cb3714028a659ecd8abbad034666b7b3c (patch) | |
| tree | 0046652c99529f7825a7e5b54d8b96a1b0ba6cb7 /firmware/export/as3525.h | |
| parent | f59724414bd241509d8f6950fa4b5465a3f26c8e (diff) | |
| download | rockbox-5d3a035cb3714028a659ecd8abbad034666b7b3c.zip rockbox-5d3a035cb3714028a659ecd8abbad034666b7b3c.tar.gz rockbox-5d3a035cb3714028a659ecd8abbad034666b7b3c.tar.bz2 rockbox-5d3a035cb3714028a659ecd8abbad034666b7b3c.tar.xz | |
Implemented system_reboot().
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19617 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/as3525.h')
| -rw-r--r-- | firmware/export/as3525.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/firmware/export/as3525.h b/firmware/export/as3525.h index f2f16c8..50b1fbe 100644 --- a/firmware/export/as3525.h +++ b/firmware/export/as3525.h @@ -303,6 +303,12 @@ interface */ #define TIMER_PRESCALE_16 0x04 #define TIMER_PRESCALE_256 0x08 + +/* Watchdog registers */ +#define WDT_LOAD (*(volatile unsigned long*)(WDT_BASE)) +#define WDT_CONTROL (*(volatile unsigned long*)(WDT_BASE+8)) + + /* GPIO registers */ #define GPIOA_DIR (*(volatile unsigned char*)(GPIOA_BASE+0x400)) |