source: flair-src/tags/0.2.0/lib/FlairSensorActuator/src/SimuLaser.cpp@ 267

Last change on this file since 267 was 245, checked in by Sanahuja Guillaume, 6 years ago

added simupressuresensor

File size: 1.9 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/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 "SimuLaser.h"
18#include <FrameworkManager.h>
19#include <SpinBox.h>
20#include <GroupBox.h>
21#include <Matrix.h>
22#include <SharedMem.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
33SimuLaser::SimuLaser(string name,
34 uint32_t modelId,uint32_t deviceId, uint8_t priority)
35 : Thread(getFrameworkManager(), name, priority), LaserRangeFinder(name) {
36 data_rate =
37 new SpinBox(GetGroupBox()->NewRow(), "data rate", " Hz", 1, 500, 1, 50);
38
39 shmem = new SharedMem((Thread *)this, ShMemName(modelId, deviceId),
40 360 * sizeof(float));
41 SetIsReady(true);
42}
43
44SimuLaser::~SimuLaser() {
45 SafeStop();
46 Join();
47}
48
49string SimuLaser::ShMemName(uint32_t modelId,uint32_t deviceId) {
50 ostringstream dev_name;
51 dev_name << "simu" << modelId << "_laser_" << deviceId;
52 return dev_name.str().c_str();
53}
54
55void SimuLaser::Run(void) {
56 float z[360];
57
58 SetPeriodUS((uint32_t)(1000000. / data_rate->Value()));
59
60 while (!ToBeStopped()) {
61 WaitPeriod();
62
63 shmem->Read((char *)z, 360 * sizeof(float));
64
65 if (data_rate->ValueChanged() == true) {
66 SetPeriodUS((uint32_t)(1000000. / data_rate->Value()));
67 }
68 for (int i = 0; i < 360; i++) {
69 output->SetValue(i, 0, z[i]); //*******
70 }
71 output->SetDataTime(GetTime());
72 ProcessUpdate(output);
73 }
74}
75
76} // end namespace sensor
77} // end namespace flair
Note: See TracBrowser for help on using the repository browser.