annotate cmu200/mode.c @ 84:a2d4cab0a592

fc-rfcal-txband: works after a couple of bugfixes
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 15 Jul 2017 23:57:56 +0000
parents 8877634feba5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
b552e8d86474 fc-cmu200d: started implementing operation modes
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 /*
b552e8d86474 fc-cmu200d: started implementing operation modes
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 * In this module we are going to implement the logic for switching
b552e8d86474 fc-cmu200d: started implementing operation modes
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 * the CMU200 into different modes as needed for signal generation,
b552e8d86474 fc-cmu200d: started implementing operation modes
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 * frequency measurement etc.
b552e8d86474 fc-cmu200d: started implementing operation modes
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5 */
b552e8d86474 fc-cmu200d: started implementing operation modes
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6
b552e8d86474 fc-cmu200d: started implementing operation modes
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7 #include "mode.h"
b552e8d86474 fc-cmu200d: started implementing operation modes
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8
b552e8d86474 fc-cmu200d: started implementing operation modes
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 int current_mode;
b552e8d86474 fc-cmu200d: started implementing operation modes
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10
b552e8d86474 fc-cmu200d: started implementing operation modes
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 cmu200_session_begin()
b552e8d86474 fc-cmu200d: started implementing operation modes
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 {
b552e8d86474 fc-cmu200d: started implementing operation modes
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 current_mode = OP_MODE_UNDEF;
b552e8d86474 fc-cmu200d: started implementing operation modes
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 }