diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2007-06-05 07:03:30 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2007-06-05 07:03:30 +0000 |
| commit | bcb8a884ee256e31d45a46bdeb83423457ac48d2 (patch) | |
| tree | 5452ef9fa0b3f968a30835d44360f35951f2a0d5 /firmware/export/config-e200.h | |
| parent | fea88888f0bc271b57a6d6dfab387fddc1cbd20d (diff) | |
| download | rockbox-bcb8a884ee256e31d45a46bdeb83423457ac48d2.zip rockbox-bcb8a884ee256e31d45a46bdeb83423457ac48d2.tar.gz rockbox-bcb8a884ee256e31d45a46bdeb83423457ac48d2.tar.bz2 rockbox-bcb8a884ee256e31d45a46bdeb83423457ac48d2.tar.xz | |
e200: Add recording. Just from MIC right now and FM integration will happen soon. Most every bit of weirdness is nescessary and no problems seem to exist that the retailos doesn't exhibit too (namely noise when LCD is on when recording from MIC).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13557 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/config-e200.h')
| -rw-r--r-- | firmware/export/config-e200.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/firmware/export/config-e200.h b/firmware/export/config-e200.h index 9d4fb1c..001c89b 100644 --- a/firmware/export/config-e200.h +++ b/firmware/export/config-e200.h @@ -7,11 +7,22 @@ #define MODEL_NUMBER 16 #define MODEL_NAME "Sandisk Sansa e200" +#define HW_SAMPR_CAPS (SAMPR_CAP_44) + /* define this if you have recording possibility */ -/*#define HAVE_RECORDING*/ /* TODO: add support for this */ +#define HAVE_RECORDING + +#define DEFAULT_REC_MIC_GAIN 23 +#define DEFAULT_REC_LEFT_GAIN 23 +#define DEFAULT_REC_RIGHT_GAIN 23 + +#define REC_SAMPR_CAPS (SAMPR_CAP_22) +#define REC_FREQ_DEFAULT REC_FREQ_22 /* Default is not 44.1kHz */ +#define REC_SAMPR_DEFAULT SAMPR_22 + /* Define bitmask of input sources - recordable bitmask can be defined explicitly if different */ -/* #define INPUT_SRC_CAPS (SRC_CAP_MIC | SRC_CAP_FMRADIO) */ +#define INPUT_SRC_CAPS (SRC_CAP_MIC) /* define this if you have a bitmap LCD display */ #define HAVE_LCD_BITMAP |