CVS: msp430-libc/include/msp430 wdt_a.h,1.2,1.3
"Sergey A. Borshch" <[email protected]> Tue, 6 Jan 2009 09:18:16 +0000
| Newsgroups | gmane.comp.hardware.texas-instruments.msp430.gcc.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/mspgcc/msp430-libc/include/msp430 In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv3485 Modified Files: wdt_a.h Log Message: WDTPW value fixed. Index: wdt_a.h =================================================================== RCS file: /cvsroot/mspgcc/msp430-libc/include/msp430/wdt_a.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -w -d -r1.2 -r1.3 --- wdt_a.h 15 Dec 2008 12:48:20 -0000 1.2 +++ wdt_a.h 6 Jan 2009 09:18:14 -0000 1.3 @@ -23,7 +23,7 @@ sfrw(WDTCTL, WDTCTL_); /* WDTCTL */ -#define WDTPW (0xA5<<8) /* Watchdog timer password. Always read as 069h. Must be written as 05Ah, or a PUC will be generated */ +#define WDTPW (0x5A<<8) /* Watchdog timer password. Always read as 069h. Must be written as 05Ah, or a PUC will be generated */ #define WDTHOLD (1<<7) /* Watchdog timer hold */ #define WDTSSEL1 (1<<6) /* Watchdog timer clock source select */ #define WDTSSEL0 (1<<5) /* Watchdog timer clock source select */ ------------------------------------------------------------------------------