ScannerSickS300.cpp
Go to the documentation of this file.
1 /*
2  * Copyright 2017 Fraunhofer Institute for Manufacturing Engineering and Automation (IPA)
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 
19 
20 #include <stdint.h>
21 
22 //-----------------------------------------------
23 
24 typedef unsigned char BYTE;
25 
26 const double ScannerSickS300::c_dPi = 3.14159265358979323846;
27 unsigned char ScannerSickS300::m_iScanId = 7;
28 
29 const unsigned short crc_LookUpTable[256]
30  = {
31  0x0000, 0x1021, 0x2042, 0x3063, 0x4084, 0x50A5, 0x60C6, 0x70E7,
32  0x8108, 0x9129, 0xA14A, 0xB16B, 0xC18C, 0xD1AD, 0xE1CE, 0xF1EF,
33  0x1231, 0x0210, 0x3273, 0x2252, 0x52B5, 0x4294, 0x72F7, 0x62D6,
34  0x9339, 0x8318, 0xB37B, 0xA35A, 0xD3BD, 0xC39C, 0xF3FF, 0xE3DE,
35  0x2462, 0x3443, 0x0420, 0x1401, 0x64E6, 0x74C7, 0x44A4, 0x5485,
36  0xA56A, 0xB54B, 0x8528, 0x9509, 0xE5EE, 0xF5CF, 0xC5AC, 0xD58D,
37  0x3653, 0x2672, 0x1611, 0x0630, 0x76D7, 0x66F6, 0x5695, 0x46B4,
38  0xB75B, 0xA77A, 0x9719, 0x8738, 0xF7DF, 0xE7FE, 0xD79D, 0xC7BC,
39  0x48C4, 0x58E5, 0x6886, 0x78A7, 0x0840, 0x1861, 0x2802, 0x3823,
40  0xC9CC, 0xD9ED, 0xE98E, 0xF9AF, 0x8948, 0x9969, 0xA90A, 0xB92B,
41  0x5AF5, 0x4AD4, 0x7AB7, 0x6A96, 0x1A71, 0x0A50, 0x3A33, 0x2A12,
42  0xDBFD, 0xCBDC, 0xFBBF, 0xEB9E, 0x9B79, 0x8B58, 0xBB3B, 0xAB1A,
43  0x6CA6, 0x7C87, 0x4CE4, 0x5CC5, 0x2C22, 0x3C03, 0x0C60, 0x1C41,
44  0xEDAE, 0xFD8F, 0xCDEC, 0xDDCD, 0xAD2A, 0xBD0B, 0x8D68, 0x9D49,
45  0x7E97, 0x6EB6, 0x5ED5, 0x4EF4, 0x3E13, 0x2E32, 0x1E51, 0x0E70,
46  0xFF9F, 0xEFBE, 0xDFDD, 0xCFFC, 0xBF1B, 0xAF3A, 0x9F59, 0x8F78,
47  0x9188, 0x81A9, 0xB1CA, 0xA1EB, 0xD10C, 0xC12D, 0xF14E, 0xE16F,
48  0x1080, 0x00A1, 0x30C2, 0x20E3, 0x5004, 0x4025, 0x7046, 0x6067,
49  0x83B9, 0x9398, 0xA3FB, 0xB3DA, 0xC33D, 0xD31C, 0xE37F, 0xF35E,
50  0x02B1, 0x1290, 0x22F3, 0x32D2, 0x4235, 0x5214, 0x6277, 0x7256,
51  0xB5EA, 0xA5CB, 0x95A8, 0x8589, 0xF56E, 0xE54F, 0xD52C, 0xC50D,
52  0x34E2, 0x24C3, 0x14A0, 0x0481, 0x7466, 0x6447, 0x5424, 0x4405,
53  0xA7DB, 0xB7FA, 0x8799, 0x97B8, 0xE75F, 0xF77E, 0xC71D, 0xD73C,
54  0x26D3, 0x36F2, 0x0691, 0x16B0, 0x6657, 0x7676, 0x4615, 0x5634,
55  0xD94C, 0xC96D, 0xF90E, 0xE92F, 0x99C8, 0x89E9, 0xB98A, 0xA9AB,
56  0x5844, 0x4865, 0x7806, 0x6827, 0x18C0, 0x08E1, 0x3882, 0x28A3,
57  0xCB7D, 0xDB5C, 0xEB3F, 0xFB1E, 0x8BF9, 0x9BD8, 0xABBB, 0xBB9A,
58  0x4A75, 0x5A54, 0x6A37, 0x7A16, 0x0AF1, 0x1AD0, 0x2AB3, 0x3A92,
59  0xFD2E, 0xED0F, 0xDD6C, 0xCD4D, 0xBDAA, 0xAD8B, 0x9DE8, 0x8DC9,
60  0x7C26, 0x6C07, 0x5C64, 0x4C45, 0x3CA2, 0x2C83, 0x1CE0, 0x0CC1,
61  0xEF1F, 0xFF3E, 0xCF5D, 0xDF7C, 0xAF9B, 0xBFBA, 0x8FD9, 0x9FF8,
62  0x6E17, 0x7E36, 0x4E55, 0x5E74, 0x2E93, 0x3EB2, 0x0ED1, 0x1EF0
63  };
64 
65 unsigned int TelegramParser::createCRC(uint8_t *ptrData, int Size)
66 {
67  int CounterWord;
68  unsigned short CrcValue=0xFFFF;
69 
70  for (CounterWord = 0; CounterWord < Size; CounterWord++)
71  {
72  CrcValue = (CrcValue << 8) ^ crc_LookUpTable[ (((uint8_t)(CrcValue >> 8)) ^ *ptrData) ];
73  ptrData++;
74  }
75 
76  return (CrcValue);
77 }
78 
79 //-----------------------------------------------
81 {
82  // allows to set different Baud-Multipliers depending on used SerialIO-Card
83  m_dBaudMult = 1.0;
84 
85  // init scan with zeros
86  m_iPosReadBuf2 = 0;
87 
88  m_actualBufferSize = 0;
89 
90  m_bInStandby = true;
91 
92 }
93 
94 
95 //-------------------------------------------
97 {
98  m_SerialIO.closeIO();
99 }
100 
101 
102 // ---------------------------------------------------------------------------
103 bool ScannerSickS300::open(const char* pcPort, int iBaudRate, int iScanId=7)
104 {
105  int bRetSerial;
106 
107  // update scan id (id=8 for slave scanner, else 7)
108  m_iScanId = iScanId;
109 
110  // initialize Serial Interface
111  m_SerialIO.setBaudRate(iBaudRate);
112  m_SerialIO.setDeviceName(pcPort);
113  m_SerialIO.setBufferSize(READ_BUF_SIZE - 10 , WRITE_BUF_SIZE -10 );
114  m_SerialIO.setHandshake(SerialIO::HS_NONE);
115  m_SerialIO.setMultiplier(m_dBaudMult);
116  bRetSerial = m_SerialIO.openIO();
117  m_SerialIO.setTimeout(0.0);
118  m_SerialIO.SetFormat(8, SerialIO::PA_NONE, SerialIO::SB_ONE);
119 
120  if(bRetSerial == 0)
121  {
122  // Clears the read and transmit buffer.
123  m_iPosReadBuf2 = 0;
124  m_SerialIO.purge();
125  return true;
126  }
127  else
128  {
129  return false;
130  }
131 }
132 
133 
134 //-------------------------------------------
136 {
137  m_iPosReadBuf2 = 0;
138  m_SerialIO.purge();
139 }
140 
141 
142 //-------------------------------------------
144 {
145 }
146 
147 
148 //-------------------------------------------
150 {
151 }
152 
153 
154 //-------------------------------------------
156 {
157 }
158 
159 //-----------------------------------------------
160 bool ScannerSickS300::getScan(std::vector<double> &vdDistanceM, std::vector<double> &vdAngleRAD, std::vector<double> &vdIntensityAU, unsigned int &iTimestamp, unsigned int &iTimeNow, const bool debug)
161 {
162  bool bRet = false;
163  int i;
164  int iNumRead2 = 0;
165  std::vector<ScanPolarType> vecScanPolar;
166 
167  iTimeNow=0;
168 
169  if(SCANNER_S300_READ_BUF_SIZE-2-m_actualBufferSize<=0)
170  m_actualBufferSize=0;
171 
172  iNumRead2 = m_SerialIO.readBlocking((char*)m_ReadBuf+m_actualBufferSize, SCANNER_S300_READ_BUF_SIZE-2-m_actualBufferSize);
173  if(iNumRead2<=0) return false;
174 
175  m_actualBufferSize = m_actualBufferSize + iNumRead2;
176 
177  // Try to find scan. Searching backwards in the receive queue.
178  for(i=m_actualBufferSize; i>=0; i--)
179  {
180  // parse through the telegram until header with correct scan id is found
181  if(tp_.parseHeader(m_ReadBuf+i, m_actualBufferSize-i, m_iScanId, debug))
182  {
183  tp_.readDistRaw(m_ReadBuf+i, m_viScanRaw, debug);
184  if(m_viScanRaw.size()>0) {
185  // Scan was succesfully read from buffer
186  bRet = true;
187  int old = m_actualBufferSize;
188  m_actualBufferSize -= tp_.getCompletePacketSize()+i;
189  for(int i=0; i<old-m_actualBufferSize; i++)
190  m_ReadBuf[i] = m_ReadBuf[i+old-m_actualBufferSize];
191  break;
192  }
193  }
194  }
195 
196  PARAM_MAP::const_iterator param = m_Params.find(tp_.getField());
197  if(bRet && param!=m_Params.end())
198  {
199  // convert data into range and intensity information
200  convertScanToPolar(param, m_viScanRaw, vecScanPolar);
201 
202  // resize vectors to size of Scan
203  vdDistanceM.resize(vecScanPolar.size());
204  vdAngleRAD.resize(vecScanPolar.size());
205  vdIntensityAU.resize(vecScanPolar.size());
206  // assign outputs
207  for(unsigned int i=0; i < vecScanPolar.size(); i++)
208  {
209  vdDistanceM[i] = vecScanPolar[i].dr;
210  vdAngleRAD[i] = vecScanPolar[i].da;
211  vdIntensityAU[i] = vecScanPolar[i].di;
212  }
213  }
214 
215  return bRet;
216 }
217 
218 //-------------------------------------------
219 void ScannerSickS300::convertScanToPolar(const PARAM_MAP::const_iterator param, std::vector<int> viScanRaw,
220  std::vector<ScanPolarType>& vecScanPolar )
221 {
222  double dDist;
223  double dAngle, dAngleStep;
224  double dIntens;
225  bool bInStandby = true;
226 
227  vecScanPolar.resize(viScanRaw.size());
228  dAngleStep = fabs(param->second.dStopAngle - param->second.dStartAngle) / double(viScanRaw.size() - 1) ;
229 
230 
231  for(size_t i=0; i<viScanRaw.size(); i++)
232  {
233  dDist = double ((viScanRaw[i] & 0x1FFF) * param->second.dScale);
234 
235  // if not all values are 0x4004 , we are not in standby
236  if ( !(viScanRaw[i] == 0x4004) )
237  bInStandby = false;
238 
239  dAngle = param->second.dStartAngle + i*dAngleStep;
240  dIntens = double(viScanRaw[i] & 0x2000);
241 
242  vecScanPolar[i].dr = dDist;
243  vecScanPolar[i].da = dAngle;
244  vecScanPolar[i].di = dIntens;
245  }
246 
247  m_bInStandby = bInStandby;
248 }
bool param(const std::string &param_name, T &param_val, const T &default_val)
static unsigned int createCRC(uint8_t *ptrData, int Size)
bool open(const char *pcPort, int iBaudRate, int iScanId)
static unsigned char m_iScanId
bool getScan(std::vector< double > &vdDistanceM, std::vector< double > &vdAngleRAD, std::vector< double > &vdIntensityAU, unsigned int &iTimestamp, unsigned int &iTimeNow, const bool debug)
static const double c_dPi
const unsigned short crc_LookUpTable[256]
void convertScanToPolar(const PARAM_MAP::const_iterator param, std::vector< int > viScanRaw, std::vector< ScanPolarType > &vecScanPolar)
unsigned char BYTE


cob_sick_s300
Author(s): Florian Weisshardt
autogenerated on Wed Apr 7 2021 02:11:50