diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2010-04-01 17:24:14 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-04-01 17:24:14 +0000 |
| commit | eef7f343c24ecd4597f6fd7e9b16ea81d38dab52 (patch) | |
| tree | 02d0078f2602c51971b76bbeaf089a20ae16494d | |
| parent | 2831acd538fa1f3f3a14c5674da88b89f3ee57cf (diff) | |
| download | rockbox-eef7f343c24ecd4597f6fd7e9b16ea81d38dab52.zip rockbox-eef7f343c24ecd4597f6fd7e9b16ea81d38dab52.tar.gz rockbox-eef7f343c24ecd4597f6fd7e9b16ea81d38dab52.tar.bz2 rockbox-eef7f343c24ecd4597f6fd7e9b16ea81d38dab52.tar.xz | |
Clip+: remove button_hold() : we use software hold
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25428 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/target/arm/as3525/sansa-clipplus/button-clip.c | 11 | ||||
| -rw-r--r-- | firmware/target/arm/as3525/sansa-clipplus/button-target.h | 1 |
2 files changed, 0 insertions, 12 deletions
diff --git a/firmware/target/arm/as3525/sansa-clipplus/button-clip.c b/firmware/target/arm/as3525/sansa-clipplus/button-clip.c index 5b4af70..6514346 100644 --- a/firmware/target/arm/as3525/sansa-clipplus/button-clip.c +++ b/firmware/target/arm/as3525/sansa-clipplus/button-clip.c @@ -33,21 +33,10 @@ void button_init_device(void) GPIOB_DIR |= (1<<0); /* Pin B0 set output */ } -bool button_hold(void) -{ - /* TODO OF uses long home(A1) press. Just return false for now */ - return false; -} - int button_read_device(void) { int buttons = 0; - /* TODO No hold button Hold toggled by long home(A1) press in OF */ - if(button_hold()) - { - return 0; - } /* Buttons do not appear to need reset */ /* D6 needs special handling though */ diff --git a/firmware/target/arm/as3525/sansa-clipplus/button-target.h b/firmware/target/arm/as3525/sansa-clipplus/button-target.h index 69f5d98..c341a94 100644 --- a/firmware/target/arm/as3525/sansa-clipplus/button-target.h +++ b/firmware/target/arm/as3525/sansa-clipplus/button-target.h @@ -27,7 +27,6 @@ void button_init_device(void); int button_read_device(void); -bool button_hold(void); /* Main unit's buttons */ #define BUTTON_HOME 0x00000001 |