FreeCalypso > hg > ice1-trau-tester
view ater/record_ctrl.c @ 37:26c9535df39e
rm abis subdir: moved to e1-fake-trau repository
The present code repository is meant to contain code for talking
to a TRAU DUT, hence the name ice1-trau-tester. The different and
separate function of talking to an E1 BTS (Abis instead of Ater,
and in the opposite role) was never in scope for this project, but
that code got added here in a haste when the InSite BTS arrived
while the TRAU bring-up was still blocked. Now that we have our
Nokia TCSM2 system working and are doing TRAU experiments, let's
keep the code clean.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 29 Aug 2024 19:02:02 +0000 |
parents | 98ae717734d6 |
children |
line wrap: on
line source
/* * Here we implement stdin commands that control recording of E1 timeslot * read stream. */ #include <stdint.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <osmocom/core/select.h> #include "globals.h" void cmd_record_start(int argc, char **argv) { if (argc != 2) { printf("error: record command needs 1 argument\n"); return; } if (record_file) { printf("error: recording already in progress\n"); return; } record_file = fopen(argv[1], "w"); if (!record_file) perror(argv[1]); } void cmd_record_stop(int argc, char **argv) { if (!record_file) { printf("error: no recording in progress\n"); return; } fclose(record_file); record_file = NULL; } void cmd_print_rx(int argc, char **argv) { int i, j, off; off = 0; for (i = 0; i < 10; i++) { for (j = 0; j < 16; j++) printf(" %02X", readbuf[off++]); putchar('\n'); } }