1 | // %flair:license{
|
---|
2 | // This file is part of the Flair framework distributed under the
|
---|
3 | // CECILL-C License, Version 1.0.
|
---|
4 | // %flair:license}
|
---|
5 | // created: 2014/07/08
|
---|
6 | // filename: RadioReceiver.cpp
|
---|
7 | //
|
---|
8 | // author: Guillaume Sanahuja
|
---|
9 | // Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
10 | //
|
---|
11 | // version: $Id: $
|
---|
12 | //
|
---|
13 | // purpose: Base class for radio receiver
|
---|
14 | //
|
---|
15 | //
|
---|
16 | /*********************************************************************/
|
---|
17 |
|
---|
18 | #include "RadioReceiver.h"
|
---|
19 | #include <Tab.h>
|
---|
20 | #include <TabWidget.h>
|
---|
21 | #include <FrameworkManager.h>
|
---|
22 | #include <Matrix.h>
|
---|
23 | #include <sstream>
|
---|
24 |
|
---|
25 | using std::string;
|
---|
26 | using std::ostringstream;
|
---|
27 | using namespace flair::core;
|
---|
28 | using namespace flair::gui;
|
---|
29 |
|
---|
30 | namespace flair {
|
---|
31 | namespace sensor {
|
---|
32 |
|
---|
33 | RadioReceiver::RadioReceiver(string name,
|
---|
34 | unsigned int nb_channels)
|
---|
35 | : IODevice(getFrameworkManager(), name) {
|
---|
36 | is_connected = false;
|
---|
37 | this->nb_channels = nb_channels;
|
---|
38 |
|
---|
39 | // init matrix
|
---|
40 | MatrixDescriptor *desc = new MatrixDescriptor(nb_channels, 1);
|
---|
41 | for (int i = 0; i < nb_channels; i++) {
|
---|
42 | ostringstream channel_name;
|
---|
43 | channel_name << "channel " << i;
|
---|
44 | desc->SetElementName(i, 0, channel_name.str());
|
---|
45 | }
|
---|
46 | output = new Matrix(this, desc, floatType, name);
|
---|
47 | delete desc;
|
---|
48 |
|
---|
49 | // station sol
|
---|
50 | main_tab = new Tab(getFrameworkManager()->GetTabWidget(), name);
|
---|
51 | tab = new TabWidget(main_tab->NewRow(), name);
|
---|
52 | setup_tab = new Tab(tab, "Setup");
|
---|
53 |
|
---|
54 | AddDataToLog(output);
|
---|
55 |
|
---|
56 | SetIsReady(true);
|
---|
57 | }
|
---|
58 |
|
---|
59 | RadioReceiver::~RadioReceiver() { delete main_tab; }
|
---|
60 |
|
---|
61 | Layout *RadioReceiver::GetLayout(void) const { return setup_tab; }
|
---|
62 |
|
---|
63 | float RadioReceiver::ChannelValue(unsigned int id) const {
|
---|
64 | if (id < nb_channels) {
|
---|
65 | return output->Value(id, 0);
|
---|
66 | } else {
|
---|
67 | Err("channel %i/%i is out of bound\n", id, nb_channels);
|
---|
68 | return -1;
|
---|
69 | }
|
---|
70 | }
|
---|
71 |
|
---|
72 | bool RadioReceiver::IsConnected(void) const { return is_connected; }
|
---|
73 |
|
---|
74 | } // end namespace sensor
|
---|
75 | } // end namespace flair
|
---|