FreeCalypso > hg > fc-audio-config
annotate aud-caramel/Makefile @ 15:ee565d95164c default tip
aud-caramel: create handheld.{cfg,vol} equal to hds4.{cfg,vol}
The main audio channel on FC Caramel2 is not truly handheld, thus if
someone is operating a C2 board in ACI mode, then doing AT@AUL="hds4"
is more truthful than AT@AUL="handheld". However, the same audio mode
needs to be named "handheld" for the UI firmware to pick it up in our
Luna configuration.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 06 Nov 2021 08:23:16 +0000 |
parents | ebdb8d68e157 |
children |
rev | line source |
---|---|
15
ee565d95164c
aud-caramel: create handheld.{cfg,vol} equal to hds4.{cfg,vol}
Mychaela Falconia <falcon@freecalypso.org>
parents:
14
diff
changeset
|
1 BINFILES= handheld.cfg handheld.vol hds4.cfg hds4.vol |
14
ebdb8d68e157
aud-caramel: first-cut audio config for FC-HDS4
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
2 INSTDIR= /opt/freecalypso/aud-caramel |
0
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
3 |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 all: ${BINFILES} |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 |
15
ee565d95164c
aud-caramel: create handheld.{cfg,vol} equal to hds4.{cfg,vol}
Mychaela Falconia <falcon@freecalypso.org>
parents:
14
diff
changeset
|
6 handheld.cfg: hds4.src |
ee565d95164c
aud-caramel: create handheld.{cfg,vol} equal to hds4.{cfg,vol}
Mychaela Falconia <falcon@freecalypso.org>
parents:
14
diff
changeset
|
7 tiaud-compile $< $@ |
ee565d95164c
aud-caramel: create handheld.{cfg,vol} equal to hds4.{cfg,vol}
Mychaela Falconia <falcon@freecalypso.org>
parents:
14
diff
changeset
|
8 |
ee565d95164c
aud-caramel: create handheld.{cfg,vol} equal to hds4.{cfg,vol}
Mychaela Falconia <falcon@freecalypso.org>
parents:
14
diff
changeset
|
9 handheld.vol: Makefile |
ee565d95164c
aud-caramel: create handheld.{cfg,vol} equal to hds4.{cfg,vol}
Mychaela Falconia <falcon@freecalypso.org>
parents:
14
diff
changeset
|
10 tiaud-mkvol 150 $@ |
ee565d95164c
aud-caramel: create handheld.{cfg,vol} equal to hds4.{cfg,vol}
Mychaela Falconia <falcon@freecalypso.org>
parents:
14
diff
changeset
|
11 |
14
ebdb8d68e157
aud-caramel: first-cut audio config for FC-HDS4
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
12 hds4.cfg: hds4.src |
11
46f49aa6ab8c
aud-fcdev3b: new spkr0 config with AEC and mic tuning
Mychaela Falconia <falcon@freecalypso.org>
parents:
1
diff
changeset
|
13 tiaud-compile $< $@ |
46f49aa6ab8c
aud-fcdev3b: new spkr0 config with AEC and mic tuning
Mychaela Falconia <falcon@freecalypso.org>
parents:
1
diff
changeset
|
14 |
14
ebdb8d68e157
aud-caramel: first-cut audio config for FC-HDS4
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
15 hds4.vol: Makefile |
11
46f49aa6ab8c
aud-fcdev3b: new spkr0 config with AEC and mic tuning
Mychaela Falconia <falcon@freecalypso.org>
parents:
1
diff
changeset
|
16 tiaud-mkvol 150 $@ |
46f49aa6ab8c
aud-fcdev3b: new spkr0 config with AEC and mic tuning
Mychaela Falconia <falcon@freecalypso.org>
parents:
1
diff
changeset
|
17 |
0
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
18 install: ${BINFILES} |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
19 mkdir -p ${INSTDIR} |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
20 install -c -m 644 ${BINFILES} ${INSTDIR} |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
21 |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
22 clean: |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
23 rm -f *.cfg *.vol |