summaryrefslogtreecommitdiff
path: root/firmware/export/config-h10_5gb.h
diff options
context:
space:
mode:
authorBarry Wardell <rockbox@barrywardell.net>2006-12-18 01:52:21 +0000
committerBarry Wardell <rockbox@barrywardell.net>2006-12-18 01:52:21 +0000
commitdf0dc2262ea10f621677c0f97aae1c205e253b87 (patch)
treed25085132fe9f0504d221360092537492cedd3b8 /firmware/export/config-h10_5gb.h
parent440353a9aa1159584b977a2852e723ae07bad2a6 (diff)
downloadrockbox-df0dc2262ea10f621677c0f97aae1c205e253b87.tar.gz
rockbox-df0dc2262ea10f621677c0f97aae1c205e253b87.zip
FS#6096. Recording on PortalPlayer targets (H10, iPod Video, iPod 4g, iPod Color, iPod Nano).
* Fix failed compile of enc_config.c when HAVE_MPEG2_SAMPR is not defined. * Fix bug in AIFF encoder header creation on little endian targets. * Add recording screen keymaps for H10 and iPod. * Move pcm_playback PP specific code to target tree. * Add recording code to wmcodec drivers. * Add pcm_record code. Some problems still remain: * Playback doesn't work after recording until Rockbox is restarted. * Gain control not implemented. * Only 16-bit/44KHz for now. The hardware should be capable of up to 24-bit/96KHz. * Line-in recording not tested on H10. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11794 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/config-h10_5gb.h')
-rw-r--r--firmware/export/config-h10_5gb.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/firmware/export/config-h10_5gb.h b/firmware/export/config-h10_5gb.h
index 34b1d14d77..534c4a455f 100644
--- a/firmware/export/config-h10_5gb.h
+++ b/firmware/export/config-h10_5gb.h
@@ -8,7 +8,13 @@
8#define MODEL_NUMBER 14 8#define MODEL_NUMBER 14
9 9
10/* define this if you have recording possibility */ 10/* define this if you have recording possibility */
11/*#define HAVE_RECORDING 1*/ /* TODO: add support for this */ 11#define HAVE_RECORDING 1
12
13/* define the bitmask of hardware sample rates */
14#define HW_SAMPR_CAPS (SAMPR_CAP_44)
15
16/* define the bitmask of recording sample rates */
17#define REC_SAMPR_CAPS (SAMPR_CAP_44)
12 18
13/* define this if you have a bitmap LCD display */ 19/* define this if you have a bitmap LCD display */
14#define HAVE_LCD_BITMAP 1 20#define HAVE_LCD_BITMAP 1