FreeCalypso > hg > fc-rfcal-tools
annotate cmu200/mode.c @ 65:e7b9a9903f14
doc/Rx-cal-theory: typo fix
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 28 May 2017 05:10:32 +0000 |
parents | 8877634feba5 |
children |
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 } |