FreeCalypso > hg > fc-rfcal-tools
view autocal/txpwrmeas.c @ 63:131abadbd74d
doc/Rx-cal-theory written
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Sun, 28 May 2017 03:21:34 +0000 |
| parents | b313884c79fd |
| children | 94e8a410d6bd |
line wrap: on
line source
/* * This module contains the Tx power measurement function. */ #include <stdio.h> #include <stdlib.h> extern char tsid_response[]; do_txpwr_cal_setup(band, arfcn) char *band; unsigned arfcn; { char cmd[80]; sprintf(cmd, "txpwr-cal-setup %s %u\n", band, arfcn); tsid_command(cmd); return(0); } double tx_power_meas() { double meas; tsid_command("power-meas\n"); meas = atof(tsid_response + 1); return(meas); }
