changeset 50:6ba4de500532

ater: implement edata switch for D144
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 24 Sep 2024 06:15:40 +0000
parents 40f781efdbe1
children db39e8855f3d
files ater/Makefile ater/d144.c ater/globals.h ater/user_cmd.c
diffstat 4 files changed, 47 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ater/Makefile	Tue Sep 24 05:59:28 2024 +0000
+++ b/ater/Makefile	Tue Sep 24 06:15:40 2024 +0000
@@ -1,6 +1,6 @@
 PROG=	itt-ater-16
-OBJS=	activate.o dbits.o main.o out_frame.o play_cmd.o read_file.o read_ts.o \
-	record_ctrl.o subslot_rx.o tx_func.o user_cmd.o
+OBJS=	activate.o d144.o dbits.o main.o out_frame.o play_cmd.o read_file.o \
+	read_ts.o record_ctrl.o subslot_rx.o tx_func.o user_cmd.o
 HDRS=	globals.h out_frame.h read_file.h submux.h
 LIBUTIL=../libutil/libutil.a
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ater/d144.c	Tue Sep 24 06:15:40 2024 +0000
@@ -0,0 +1,43 @@
+/*
+ * Here we implement commands for exercising D144 mode.
+ */
+
+#include <stdint.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include <osmocom/core/select.h>
+
+#include "globals.h"
+#include "submux.h"
+
+void cmd_set_edata(int argc, char **argv)
+{
+	int nr;
+	struct ater_subslot *at;
+
+	if (argc != 3) {
+usage:		fprintf(stderr, "usage: %s 0|1|2|3 0|1\n", argv[0]);
+		return;
+	}
+	if (argv[1][0] < '0' || argv[1][0] > '3' || argv[1][1])
+		goto usage;
+	nr = argv[1][0] - '0';
+	at = &subslots[nr];
+	if (!at->is_active) {
+		fprintf(stderr, "error: subslot %d is not active\n", nr);
+		return;
+	}
+	if (!at->is_data_144) {
+		fprintf(stderr, "error: subslot %d is not in D144 mode\n", nr);
+		return;
+	}
+	if (!strcmp(argv[2], "0"))
+		at->d144_edata = 0;
+	else if (!strcmp(argv[2], "1"))
+		at->d144_edata = 1;
+	else
+		goto usage;
+}
--- a/ater/globals.h	Tue Sep 24 05:59:28 2024 +0000
+++ b/ater/globals.h	Tue Sep 24 06:15:40 2024 +0000
@@ -22,3 +22,4 @@
 void cmd_play_file(int argc, char **argv);
 void cmd_play_stop(int argc, char **argv);
 void cmd_set_dbits(int argc, char **argv);
+void cmd_set_edata(int argc, char **argv);
--- a/ater/user_cmd.c	Tue Sep 24 05:59:28 2024 +0000
+++ b/ater/user_cmd.c	Tue Sep 24 06:15:40 2024 +0000
@@ -21,6 +21,7 @@
 	{"activ-d", cmd_activate_csd},
 	{"deact", cmd_deact},
 	{"dset", cmd_set_dbits},
+	{"edata", cmd_set_edata},
 	{"play", cmd_play_file},
 	{"play-stop", cmd_play_stop},
 	{"print-rx", cmd_print_rx},