summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/target/arm/ipod/button-clickwheel.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/firmware/target/arm/ipod/button-clickwheel.c b/firmware/target/arm/ipod/button-clickwheel.c
index 46e9109..9f02665 100644
--- a/firmware/target/arm/ipod/button-clickwheel.c
+++ b/firmware/target/arm/ipod/button-clickwheel.c
@@ -383,8 +383,7 @@ bool button_hold(void)
#if CONFIG_CPU==S5L8701
return ((PDAT14 & (1 << 6)) == 0);
#elif CONFIG_CPU==S5L8702
- //TODO: Implement
- return false;
+ return ((PDATE & (1 << 3)) == 0);
#endif
}
@@ -393,7 +392,7 @@ bool headphones_inserted(void)
#if CONFIG_CPU==S5L8701
return ((PDAT14 & (1 << 5)) != 0);
#elif CONFIG_CPU==S5L8702
- //TODO: Implement
+ return ((PDATA & (1 << 6)) != 0);
return false;
#endif
}