# HG changeset patch # User Mychaela Falconia # Date 1598339923 0 # Node ID a58a38cae51c00a151c1c369d776efaae4cf3db8 # Parent 059649902c7fbc23335c44334f2860c3c2ea5513 fc-bin2rftab: added support for adc-cal table type diff -r 059649902c7f -r a58a38cae51c ffstools/caltools/fc-bin2rftab.c --- 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 #include +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},