view rvinterf/etmsync/tmscmdtab.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 aec320fe2653
children
line wrap: on
line source

/*
 * fc-tmsync command dispatch table
 */

#include "cmdtab.h"

extern int cmd_aur();
extern int cmd_aur_all();
extern int cmd_dieid();
extern int cmd_exec();
extern int cmd_exit();
extern int cmd_madc();
extern int cmd_memdump();
extern int cmd_mpr();
extern int cmd_omemdump();
extern int cmd_rfpr();
extern int cmd_rfpw();
extern int cmd_rftr();
extern int cmd_tms();
extern int cmd_ttr();
extern int cmd_ttr_all();

extern int get_pirelli_vbat_cal();
extern int get_pirelli_imei();

struct cmdtab cmdtab[] = {
	{"aur", 1, 1, cmd_aur},
	{"aur-all", 0, 0, cmd_aur_all},
	{"dieid", 0, 0, cmd_dieid},
	{"exec", 1, 1, cmd_exec},
	{"exit", 0, 0, cmd_exit},
	{"madc", 0, 0, cmd_madc},
	{"memdump", 2, 2, cmd_memdump},
	{"mpr", 1, 1, cmd_mpr},
	{"omemdump", 2, 2, cmd_omemdump},
	{"pirelli-get-imei", 0, 0, get_pirelli_imei},
	{"pirelli-vbat-cal", 0, 0, get_pirelli_vbat_cal},
	{"rfpr", 1, 1, cmd_rfpr},
	{"rfpw", 2, 3, cmd_rfpw},
	{"rftr", 1, 2, cmd_rftr},
	{"tms", 1, 1, cmd_tms},
	{"ttr", 1, 1, cmd_ttr},
	{"ttr-all", 1, 1, cmd_ttr_all},
	{0, 0, 0, 0}
};