changeset 722:a58a38cae51c

fc-bin2rftab: added support for adc-cal table type
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 25 Aug 2020 07:18:43 +0000
parents 059649902c7f
children 7f30f92a6e35
files ffstools/caltools/fc-bin2rftab.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ffstools/caltools/fc-bin2rftab.c	Tue Aug 25 07:15:02 2020 +0000
+++ b/ffstools/caltools/fc-bin2rftab.c	Tue Aug 25 07:18:43 2020 +0000
@@ -14,6 +14,7 @@
 #include <strings.h>
 #include <unistd.h>
 
+extern void write_adccal_table();
 extern void write_afcparams_table();
 extern void write_agcwords_table();
 extern void write_agcglobals_table();
@@ -31,6 +32,7 @@
 	int	size;
 	void	(*func)();
 } table_map[] = {
+	{"adc-cal",		36,	write_adccal_table},
 	{"afcparams",		24,	write_afcparams_table},
 	{"agc-table",		40,	write_agcwords_table},
 	{"agc-global-params",	8,	write_agcglobals_table},