view cmu200/mode.c @ 71:784ce9f3a80a

fc-rfcal-txcheck: spec and error values added to the output
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 14 Jul 2017 06:58:36 +0000
parents 8877634feba5
children
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;
}