Skip to content
This repository was archived by the owner on Mar 8, 2023. It is now read-only.

Commit df37ed2

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents eff50f0 + 070bc38 commit df37ed2

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

cfg/SickScan.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ gen.add("powerOnCount", int_t ,0, "Read only Power On counter at start up.",
6868
gen.add("operationHours", double_t ,0, "Read only operationg hours [h].", 0,0,6553.6)
6969
gen.add("locationName", str_t,0, "Device Location Name",""),
7070
gen.add("timelimit", double_t, 0, "Network time limit for datagram request [sec].", 5.0, 0.1,100.0)
71-
gen.add("use_binary_protocol", bool_t, 0, "Force usage of binary protocol if true or ASCII if false, if not set default protocol is used.", True)
7271
gen.add("cloud_output_mode", int_t, 0, "[0] Pointcloud is dense all layers in one cloud,[1] Each layer in its own cloud message to improve timestamp accuracy,[2] layers are split to achieve approx. 1 KHz data rate", 0,0,2)
7372
gen.add("ang_res", double_t, 0, "Angular resolution in deg/scan set to 0 to use scanner default", 0 ,0,10)
7473
gen.add("scan_freq", double_t, 0, "Scan frequency set to 0 to use scanner default",0 ,0,100)

driver/src/sick_scan_common.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2780,7 +2780,7 @@ namespace sick_scan
27802780
*/
27812781
char *buffer_pos = (char *) receiveBuffer;
27822782
char *dstart, *dend;
2783-
bool dumpDbg = true; // !!!!!
2783+
bool dumpDbg = false;
27842784
bool dataToProcess = true;
27852785
std::vector<float> vang_vec;
27862786
vang_vec.clear();

include/sick_scan/sick_generic_radar.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ namespace sick_scan
168168

169169
void simulateAsciiDatagramFromFile(unsigned char *receiveBuffer, int *actual_length, std::string filePattern);
170170

171-
bool emul;
171+
bool emul = false;
172172

173173
ros::NodeHandle nh_;
174174
ros::Publisher cloud_radar_rawtarget_pub_;

0 commit comments

Comments
 (0)