diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2007-02-17 22:55:33 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2007-02-17 22:55:33 +0000 |
| commit | fa2d49a5b932e957b94e9ec32aae1445044e8406 (patch) | |
| tree | b93f0f7de25efcce9e48691b34bde6c7031bb37a | |
| parent | 7bcfc1ddfe807258a6c6948e3f11d92326778229 (diff) | |
| download | rockbox-fa2d49a5b932e957b94e9ec32aae1445044e8406.zip rockbox-fa2d49a5b932e957b94e9ec32aae1445044e8406.tar.gz rockbox-fa2d49a5b932e957b94e9ec32aae1445044e8406.tar.bz2 rockbox-fa2d49a5b932e957b94e9ec32aae1445044e8406.tar.xz | |
set I2C type properly
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12363 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/config-fmrecorder.h | 2 | ||||
| -rw-r--r-- | firmware/export/config-player.h | 2 | ||||
| -rw-r--r-- | firmware/export/config-recorder.h | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/firmware/export/config-fmrecorder.h b/firmware/export/config-fmrecorder.h index d9377bc..c43c883 100644 --- a/firmware/export/config-fmrecorder.h +++ b/firmware/export/config-fmrecorder.h @@ -52,6 +52,8 @@ /* Define this for LCD backlight available */ #define CONFIG_BACKLIGHT BL_RTC /* on I2C controlled RTC port */ +#define CONFIG_I2C I2C_PLAYREC + #define BATTERY_CAPACITY_DEFAULT 2200 /* default battery capacity */ #ifndef SIMULATOR diff --git a/firmware/export/config-player.h b/firmware/export/config-player.h index 0517253..123b7b2 100644 --- a/firmware/export/config-player.h +++ b/firmware/export/config-player.h @@ -59,6 +59,8 @@ and then set it to input to see if it stays low or goes high */ #define HAVE_I2C_LOW_FIRST +#define CONFIG_I2C I2C_PLAYREC + /* Define this if you control power on PADR (instead of PBDR) */ #define HAVE_POWEROFF_ON_PADR diff --git a/firmware/export/config-recorder.h b/firmware/export/config-recorder.h index 4b79e0b..de4617c 100644 --- a/firmware/export/config-recorder.h +++ b/firmware/export/config-recorder.h @@ -46,6 +46,8 @@ /* Define this for LCD backlight available */ #define CONFIG_BACKLIGHT BL_RTC /* on I2C controlled RTC port */ +#define CONFIG_I2C I2C_PLAYREC + #define BATTERY_CAPACITY_DEFAULT 1500 /* default battery capacity */ #ifndef SIMULATOR |