summaryrefslogtreecommitdiff
path: root/firmware/target/arm/tcc780x/cowond2/pcm-cowond2.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/tcc780x/cowond2/pcm-cowond2.c')
-rw-r--r--firmware/target/arm/tcc780x/cowond2/pcm-cowond2.c86
1 files changed, 86 insertions, 0 deletions
diff --git a/firmware/target/arm/tcc780x/cowond2/pcm-cowond2.c b/firmware/target/arm/tcc780x/cowond2/pcm-cowond2.c
new file mode 100644
index 0000000000..2d50f042d9
--- /dev/null
+++ b/firmware/target/arm/tcc780x/cowond2/pcm-cowond2.c
@@ -0,0 +1,86 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2007 by Karl Kurbjun
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#include "system.h"
20#include "kernel.h"
21#include "logf.h"
22#include "audio.h"
23#include "sound.h"
24#include "file.h"
25
26void pcm_postinit(void)
27{
28 #warning function not implemented
29}
30
31const void * pcm_play_dma_get_peak_buffer(int *count)
32{
33 #warning function not implemented
34 (void) count;
35 return 0;
36}
37
38void pcm_play_dma_init(void)
39{
40 #warning function not implemented
41}
42
43void pcm_apply_settings(void)
44{
45 #warning function not implemented
46}
47
48void pcm_set_frequency(unsigned int frequency)
49{
50 #warning function not implemented
51 (void) frequency;
52}
53
54void pcm_play_dma_start(const void *addr, size_t size)
55{
56 #warning function not implemented
57 (void) addr;
58 (void) size;
59}
60
61void pcm_play_dma_stop(void)
62{
63 #warning function not implemented
64}
65
66void pcm_play_lock(void)
67{
68 #warning function not implemented
69}
70
71void pcm_play_unlock(void)
72{
73 #warning function not implemented
74}
75
76void pcm_play_dma_pause(bool pause)
77{
78 #warning function not implemented
79 (void) pause;
80}
81
82size_t pcm_get_bytes_waiting(void)
83{
84 #warning function not implemented
85 return 0;
86}