1
0
Fork 0
forked from len0rd/rockbox

Iriver: First attempt at recording. Use Info->Debug->PCM recording to test recording of wav-files. Seams to work fine except occasional 100 ms noise at pos 100 ms (not later) so initialization or synch problem..

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6763 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andy 2005-06-19 03:05:53 +00:00
parent 2c0a58c238
commit e5d08722f8
9 changed files with 952 additions and 2 deletions

View file

@ -63,6 +63,9 @@
#if (CONFIG_HWCODEC == MASNONE)
#include "pcm_playback.h"
#endif
#if defined(IRIVER_H100) && !defined(SIMULATOR)
#include "pcm_record.h"
#endif
#ifdef CONFIG_TUNER
#include "radio.h"
@ -293,6 +296,9 @@ void init(void)
#if (CONFIG_HWCODEC == MASNONE)
pcm_init();
#endif
#if defined(IRIVER_H100) && !defined(SIMULATOR)
pcm_init_recording();
#endif
#ifdef HAVE_CHARGING
car_adapter_mode_init();
#endif