FreeCalypso > hg > fc-rfcal-tools
view cmu200/mode.c @ 21:a3f48378658d
autocal: beginning of fc-rfcal-vcxo
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Mon, 22 May 2017 20:51:55 +0000 |
| parents | b552e8d86474 |
| children | 8877634feba5 |
line wrap: on
line source
/* * In this module we are going to implement the logic for switching * the CMU200 into different modes as needed for signal generation, * frequency measurement etc. */ #include "mode.h" int current_mode; cmu200_session_begin() { current_mode = OP_MODE_UNDEF; } stop_signal_gen() { if (current_mode == OP_MODE_SIGNAL_GEN) send_scpi_cmd("ABORT:RFG\n"); }
