view cmu200/mode.c @ 105:44c6a2b4d40a

INSTALL: we need fc-host-tools-r6 or later for ERROR_RFFAIL
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 09 Dec 2017 07:07:19 +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;
}