diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-04-16 13:34:35 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-04-16 13:34:35 +0000 |
| commit | efca1cd39a29afa32a00748e432513c9eec066aa (patch) | |
| tree | 1444710d19dac49ab3f1c9f1f4677f42548d9340 | |
| parent | 811da2b7594a3d40bd20a5f19ead4db114ff87a4 (diff) | |
| download | rockbox-efca1cd39a29afa32a00748e432513c9eec066aa.zip rockbox-efca1cd39a29afa32a00748e432513c9eec066aa.tar.gz rockbox-efca1cd39a29afa32a00748e432513c9eec066aa.tar.bz2 rockbox-efca1cd39a29afa32a00748e432513c9eec066aa.tar.xz | |
added keypad defines
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@100 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/config-player.h | 2 | ||||
| -rw-r--r-- | firmware/config-playerold.h | 2 | ||||
| -rw-r--r-- | firmware/config-recorder.h | 3 |
3 files changed, 7 insertions, 0 deletions
diff --git a/firmware/config-player.h b/firmware/config-player.h index 42c86fc..cc3816a 100644 --- a/firmware/config-player.h +++ b/firmware/config-player.h @@ -1,3 +1,5 @@ /* define this if you have a charcell LCD display */ #define HAVE_LCD_CHARCELLS 1 +/* define this if you have the Player's keyboard */ +#define HAVE_PLAYER_KEYPAD 1 diff --git a/firmware/config-playerold.h b/firmware/config-playerold.h index 42c86fc..cc3816a 100644 --- a/firmware/config-playerold.h +++ b/firmware/config-playerold.h @@ -1,3 +1,5 @@ /* define this if you have a charcell LCD display */ #define HAVE_LCD_CHARCELLS 1 +/* define this if you have the Player's keyboard */ +#define HAVE_PLAYER_KEYPAD 1 diff --git a/firmware/config-recorder.h b/firmware/config-recorder.h index 0a1279d..6231172 100644 --- a/firmware/config-recorder.h +++ b/firmware/config-recorder.h @@ -3,3 +3,6 @@ /* define this if you have a bitmap LCD display */ #define HAVE_LCD_BITMAP 1 + +/* define this if you have the Recorder's 10-key keyboard */ +#define HAVE_RECORDER_KEYPAD 1 |