source: flair-src/trunk/lib/FlairSensorActuator/src/RadioReceiver.cpp@ 67

Last change on this file since 67 was 15, checked in by Bayard Gildas, 8 years ago

sources reformatted with flair-format-dir script

File size: 1.8 KB
Line 
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 <cvmatrix.h>
23#include <sstream>
24
25using std::string;
26using std::ostringstream;
27using namespace flair::core;
28using namespace flair::gui;
29
30namespace flair {
31namespace sensor {
32
33RadioReceiver::RadioReceiver(const FrameworkManager *parent, string name,
34 unsigned int nb_channels)
35 : IODevice(parent, name) {
36 is_connected = false;
37 this->nb_channels = nb_channels;
38
39 // init matrix
40 cvmatrix_descriptor *desc = new cvmatrix_descriptor(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 cvmatrix(this, desc, floatType, name);
47
48 // station sol
49 main_tab = new Tab(parent->GetTabWidget(), name);
50 tab = new TabWidget(main_tab->NewRow(), name);
51 setup_tab = new Tab(tab, "Setup");
52
53 AddDataToLog(output);
54}
55
56RadioReceiver::~RadioReceiver() { delete main_tab; }
57
58Layout *RadioReceiver::GetLayout(void) const { return setup_tab; }
59
60float RadioReceiver::ChannelValue(unsigned int id) const {
61 if (id < nb_channels) {
62 return output->Value(id, 0);
63 } else {
64 Err("channel %i/%i is out of bound\n", id, nb_channels);
65 return -1;
66 }
67}
68
69bool RadioReceiver::IsConnected(void) const { return is_connected; }
70
71} // end namespace sensor
72} // end namespace flair
Note: See TracBrowser for help on using the repository browser.