comparison autocal/txpwrmeas.c @ 132:94e8a410d6bd

fc-rfcal-txcheck: pass PCL to tester (txpwr-cal-pcl)
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 20 Dec 2021 03:52:01 +0000
parents b313884c79fd
children c99b1dce04ec
comparison
equal deleted inserted replaced
131:8e26cb57c7f8 132:94e8a410d6bd
16 sprintf(cmd, "txpwr-cal-setup %s %u\n", band, arfcn); 16 sprintf(cmd, "txpwr-cal-setup %s %u\n", band, arfcn);
17 tsid_command(cmd); 17 tsid_command(cmd);
18 return(0); 18 return(0);
19 } 19 }
20 20
21 pass_pcl_to_tester(pcl)
22 unsigned pcl;
23 {
24 char cmd[80];
25
26 sprintf(cmd, "txpwr-cal-pcl %u\n", pcl);
27 tsid_command(cmd);
28 return(0);
29 }
30
21 double 31 double
22 tx_power_meas() 32 tx_power_meas()
23 { 33 {
24 double meas; 34 double meas;
25 35