diff options
| author | Mark Arigo <markarigo@gmail.com> | 2008-12-22 02:44:08 +0000 |
|---|---|---|
| committer | Mark Arigo <markarigo@gmail.com> | 2008-12-22 02:44:08 +0000 |
| commit | 1124713acbd8707bbbea2f0dcb9666b3cb9c1f87 (patch) | |
| tree | 7d58c73e7c00d52de84e38dc2093e07b62bb2b82 | |
| parent | dca9f42cdf577f6ca0b2abde6680e495d2a3373a (diff) | |
| download | rockbox-1124713acbd8707bbbea2f0dcb9666b3cb9c1f87.zip rockbox-1124713acbd8707bbbea2f0dcb9666b3cb9c1f87.tar.gz rockbox-1124713acbd8707bbbea2f0dcb9666b3cb9c1f87.tar.bz2 rockbox-1124713acbd8707bbbea2f0dcb9666b3cb9c1f87.tar.xz | |
Enable the RTC on the Philips HDD16x0. The RTC is a PCF8563, but it's register compatible with the E8564. Thanks to Anton Veretenenko.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19555 a1c6a512-1295-4272-9138-f99709370657
| -rwxr-xr-x | firmware/export/config-hdd1630.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/firmware/export/config-hdd1630.h b/firmware/export/config-hdd1630.h index 4b2e7ba..483573b 100755 --- a/firmware/export/config-hdd1630.h +++ b/firmware/export/config-hdd1630.h @@ -74,10 +74,11 @@ /* Define this if you do software codec */ #define CONFIG_CODEC SWCODEC -/* define this if you have a real-time clock */ +/* define this if you have a real-time clock. The HDD16x0 has a PCF8563 RTC, + but it's register compatible with the E8564. */ #ifndef BOOTLOADER -/* #define CONFIG_RTC RTC_E8564 */ -/* #define HAVE_RTC_ALARM */ +#define CONFIG_RTC RTC_E8564 +#define HAVE_RTC_ALARM #endif /* Define this if you have a software controlled poweroff */ |