source: flair-src/trunk/lib/FlairSensorActuator/src/SimuUs.cpp@ 75

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

sources reformatted with flair-format-dir script

File size: 2.0 KB
RevLine 
[3]1// %flair:license{
[15]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[3]4// %flair:license}
5// created: 2014/02/07
6// filename: SimuUs.cpp
7//
8// author: Guillaume Sanahuja
9// Copyright Heudiasyc UMR UTC/CNRS 7253
10//
11// version: $Id: $
12//
13// purpose: Class for a simulation us
14//
15//
16/*********************************************************************/
17#include "SimuUs.h"
18#include <FrameworkManager.h>
19#include <ImuData.h>
20#include <SpinBox.h>
21#include <GroupBox.h>
22#include <cvmatrix.h>
23#include <SharedMem.h>
24#include <sstream>
25
26using std::string;
27using std::ostringstream;
28using namespace flair::core;
29using namespace flair::gui;
30
[15]31namespace flair {
32namespace sensor {
[3]33
[15]34SimuUs::SimuUs(const FrameworkManager *parent, string name, uint32_t dev_id,
35 uint8_t priority)
36 : Thread(parent, name, priority), UsRangeFinder(parent, name) {
37 data_rate =
38 new SpinBox(GetGroupBox()->NewRow(), "data rate", " Hz", 1, 500, 1, 50);
[3]39
[15]40 ostringstream dev_name;
41 dev_name << "simu_us_" << dev_id;
42 shmem = new SharedMem((Thread *)this, dev_name.str().c_str(), sizeof(float));
[3]43}
44
[15]45SimuUs::SimuUs(const IODevice *parent, string name, uint32_t dev_id)
46 : Thread(parent, name, 0), UsRangeFinder(parent, name) {
47 data_rate = NULL;
[3]48
[15]49 ostringstream dev_name;
50 dev_name << "simu_us_" << dev_id;
51 shmem = new SharedMem((Thread *)this, dev_name.str().c_str(), sizeof(float));
[3]52}
53
[15]54SimuUs::~SimuUs() {
55 SafeStop();
56 Join();
[3]57}
58
[15]59void SimuUs::Run(void) {
60 float z;
[3]61
[15]62 if (data_rate == NULL) {
63 Thread::Err("not applicable for simulation part.\n");
64 return;
65 }
[3]66
[15]67 SetPeriodUS((uint32_t)(1000000. / data_rate->Value()));
[3]68
[15]69 while (!ToBeStopped()) {
70 WaitPeriod();
[3]71
[15]72 shmem->Read((char *)&z, sizeof(float));
[3]73
[15]74 if (data_rate->ValueChanged() == true) {
75 SetPeriodUS((uint32_t)(1000000. / data_rate->Value()));
76 }
[3]77
[15]78 output->SetValue(0, 0, z);
79 output->SetDataTime(GetTime());
80 ProcessUpdate(output);
81 }
[3]82}
83
84} // end namespace sensor
85} // end namespace flair
Note: See TracBrowser for help on using the repository browser.