diff options
author | Mark Arigo <markarigo@gmail.com> | 2009-12-25 04:05:01 +0000 |
---|---|---|
committer | Mark Arigo <markarigo@gmail.com> | 2009-12-25 04:05:01 +0000 |
commit | 6908cc52358df90a27452ab0f085fa41674440ff (patch) | |
tree | 32c307c3164e24ad427ac98b389bad823c363034 /firmware/target/arm/system-pp502x.c | |
parent | 4a85eb7d9f7212bf2a0974fa42c2cb4f1790f99e (diff) |
Merry Christmas Gogear HDD6330 owners! This is the start of the HDD6330 port. At the moment, it's essentially a copy of the HDD1630 port with a minimal LCD driver. The touchpad doesn't work as expected, but you can still kind of navigate and listen to music/radio.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24112 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/system-pp502x.c')
-rw-r--r-- | firmware/target/arm/system-pp502x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/system-pp502x.c b/firmware/target/arm/system-pp502x.c index 61d4d7cb59..e2604e7633 100644 --- a/firmware/target/arm/system-pp502x.c +++ b/firmware/target/arm/system-pp502x.c @@ -143,7 +143,7 @@ void __attribute__((interrupt("IRQ"))) irq_handler(void) usb_insert_int(); } /* end PHILIPS_SA9200 */ -#elif defined(PHILIPS_HDD1630) +#elif defined(PHILIPS_HDD1630) || defined(PHILIPS_HDD6330) else if (CPU_HI_INT_STAT & GPIO0_MASK) { if (GPIOA_INT_STAT & 0x20) button_int(); @@ -152,7 +152,7 @@ void __attribute__((interrupt("IRQ"))) irq_handler(void) if (GPIOE_INT_STAT & 0x04) usb_insert_int(); } -/* end PHILIPS_HDD1630 */ +/* end PHILIPS_HDD1630 || PHILIPS_HDD6330 */ #elif defined(SAMSUNG_YH820) || defined(SAMSUNG_YH920) || defined(SAMSUNG_YH925) else if (CPU_HI_INT_STAT & GPIO0_MASK) { if (GPIOD_INT_STAT & 0x10) |