- Timestamp:
- Feb 22, 2018, 3:38:55 PM (7 years ago)
- Location:
- trunk/lib
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairCore/src/RangeFinderPlot.cpp
r214 r221 35 35 : SendData(position, name, "RangeFinderPlot", 200) { 36 36 this->datas = datas; 37 Warn("RangeFinderPlot::CopyDatas needs to be written\n"); 37 38 38 SetSendSize(datas->GetDataType().GetSize()); 39 39 … … 58 58 59 59 void RangeFinderPlot::CopyDatas(char *buf) const { 60 //datas->CopyDatas(buf);60 datas->CopyDatas(buf); 61 61 } 62 62 -
trunk/lib/FlairSensorActuator/src/SimuUs.cpp
r214 r221 32 32 namespace sensor { 33 33 34 //control part 34 35 SimuUs::SimuUs(string name, uint32_t modelId,uint32_t deviceId, 35 36 uint8_t priority) … … 43 44 } 44 45 46 //simulation part 45 47 SimuUs::SimuUs(const IODevice *parent, string name,uint32_t modelId,uint32_t deviceId) 46 48 : Thread(parent, name, 0), UsRangeFinder(parent,name) { -
trunk/lib/FlairSensorActuator/src/UsRangeFinder.cpp
r214 r221 73 73 Tab *UsRangeFinder::GetPlotTab(void) const { return plot_tab; } 74 74 75 TabWidget *UsRangeFinder::GetTabWidget(void) const { return tab; } 76 75 77 void UsRangeFinder::UseDefaultPlot(void) { 76 78 if (tab == NULL) { -
trunk/lib/FlairSensorActuator/src/UsRangeFinder.h
r214 r221 105 105 */ 106 106 gui::Tab *GetPlotTab(void) const; 107 108 /*! 109 * \brief Tab widget 110 * 111 * \return tab widget 112 */ 113 gui::TabWidget *GetTabWidget(void) const; 107 114 108 115 /*!
Note:
See TracChangeset
for help on using the changeset viewer.