annotate target-utils/buzplayer/main.c @ 1014:961efadd530a default tip

fc-shell TCH DL handler: add support for CSD modes TCH DL capture mechanism in FC Tourmaline firmware has been extended to support CSD modes in addition to speech - add the necessary support on the host tools side. It needs to be noted that this mechanism in its present state does NOT provide the debug utility value that was sought: as we learned only after the code was implemented, TI's DSP has a misfeature in that the buffer we are reading (a_dd_0[]) is zeroed out when the IDS block is enabled, i.e., we are reading all zeros and not the real DL bits we were after. But since the code has already been written, we are keeping it - perhaps we can do some tests with IDS disabled.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 26 Nov 2024 06:27:43 +0000
parents 9092ff68e37d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
76
5bbba2cab6f3 target-utils: buzplayer started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 #include "types.h"
79
49d2684805b1 buzplayer: melody buffer implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 77
diff changeset
2 #include "melody.h"
49d2684805b1 buzplayer: melody buffer implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 77
diff changeset
3
49d2684805b1 buzplayer: melody buffer implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 77
diff changeset
4 extern char _end[];
49d2684805b1 buzplayer: melody buffer implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 77
diff changeset
5
49d2684805b1 buzplayer: melody buffer implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 77
diff changeset
6 struct melentry *melody_buf_start, *melody_buf_tailptr;
823
9092ff68e37d buzplayer: implement PWT mode melody entry
Mychaela Falconia <falcon@freecalypso.org>
parents: 79
diff changeset
7 int melody_mode;
76
5bbba2cab6f3 target-utils: buzplayer started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8
5bbba2cab6f3 target-utils: buzplayer started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 main()
5bbba2cab6f3 target-utils: buzplayer started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 {
5bbba2cab6f3 target-utils: buzplayer started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 uart_select_init();
5bbba2cab6f3 target-utils: buzplayer started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 printf("FreeCalypso buzzer player running\n");
5bbba2cab6f3 target-utils: buzplayer started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 print_boot_rom_info();
5bbba2cab6f3 target-utils: buzplayer started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 *(volatile u16 *)0xfffe4806 = 0xFFF3; /* enable ARMIO clock */
77
0f11da299b7d buzplayer: beginning of timer implementation
Mychaela Falconia <falcon@freecalypso.org>
parents: 76
diff changeset
15 timer_init();
79
49d2684805b1 buzplayer: melody buffer implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 77
diff changeset
16 melody_buf_start = (struct melentry *) _end;
49d2684805b1 buzplayer: melody buffer implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 77
diff changeset
17 melody_buf_tailptr = melody_buf_start;
76
5bbba2cab6f3 target-utils: buzplayer started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
18 for (;;) {
5bbba2cab6f3 target-utils: buzplayer started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19 putchar('=');
5bbba2cab6f3 target-utils: buzplayer started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
20 if (command_entry())
5bbba2cab6f3 target-utils: buzplayer started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21 command_dispatch();
5bbba2cab6f3 target-utils: buzplayer started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
22 }
5bbba2cab6f3 target-utils: buzplayer started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
23 }