view cmu200/mode.c @ 102:80281b67511f

fc-rfcal-txband: fixed bug in the corner case when the target power level is above the highest basis point
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 12 Aug 2017 08:47:09 +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;
}