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:
parent
2c0a58c238
commit
e5d08722f8
9 changed files with 952 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue