FreeCalypso > hg > freecalypso-tools
view loadtools/ltmisc.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 | dfe6ba3611cd |
children |
line wrap: on
line source
/* * This module is a place to implement little miscellaneous fc-loadtool * commands which don't belong anywhere else. */ #include <sys/types.h> #include <sys/time.h> #include <stdio.h> #include <stdint.h> #include <stdlib.h> cmd_crc32(argc, argv) char **argv; { u_long area_base, area_len; char *strtoul_endp; u_long crc_result; int stat; area_base = strtoul(argv[1], &strtoul_endp, 16); if (*strtoul_endp) { inv: fprintf(stderr, "usage: crc32 hex-start hex-len\n"); return(-1); } area_len = strtoul(argv[2], &strtoul_endp, 16); if (*strtoul_endp) goto inv; stat = crc32_on_target(area_base, area_len, &crc_result); if (stat == 0) printf("%08lX\n", crc_result); return(stat); } cmd_dieid(argc, argv) char **argv; { static uint32_t addrs[4] = {0xFFFEF010, 0xFFFEF012, 0xFFFEF014, 0xFFFEF016}; uint16_t data[4]; int i, stat; FILE *of; for (i = 0; i < 4; i++) { stat = do_r16(addrs[i], data + i); if (stat) return(stat); printf("%08lX: %04X\n", (u_long)addrs[i], (int)data[i]); } if (argc < 2) return(0); of = fopen(argv[1], "w"); if (!of) { perror(argv[1]); return(-1); } for (i = 0; i < 4; i++) fprintf(of, "%08lX: %04X\n", (u_long)addrs[i], (int)data[i]); fclose(of); printf("Saved to %s\n", argv[1]); return(0); } cmd_timeout_cal(argc, argv) char **argv; { char *targv[3]; struct timeval time1, time2, diff; int rc; targv[0] = "sertimeout"; targv[1] = argv[1]; targv[2] = 0; if (tpinterf_make_cmd(targv) < 0) { fprintf(stderr, "error: unable to form target command\n"); return(-1); } if (tpinterf_send_cmd() < 0) return(-1); gettimeofday(&time1, 0); rc = tpinterf_pass_output(60); gettimeofday(&time2, 0); if (rc) return(rc); timersub(&time2, &time1, &diff); printf("%u.%06u s\n", (unsigned) diff.tv_sec, (unsigned) diff.tv_usec); return(0); }