You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# add_compile_options(-Wshadow) # Note: compiler option -Wshadow generates a lot of warnings in ros header files. Therefore it's deactivated by default, but can be usefull for development and testing.
16
28
set(LINUX_LIBRARIES pthread) # gcc maps std::thread to pthread, using std::thread requires linking with pthread
Copy file name to clipboardExpand all lines: README.md
+16-4Lines changed: 16 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -343,24 +343,36 @@ pip install scapy
343
343
pip install pypcapfile
344
344
pip install python-pcapng
345
345
```
346
+
If you're still getting `ModuleNotFoundError` messages, try `sudo pip install` resp. `sudo pip3 install` instead of `pip install`.
346
347
347
348
:question: UDP messages have CRC checksum error in wireshark or tcpdump
348
349
349
350
:white_check_mark: Excerpt from https://docs.gz.ro/tuning-network-cards-on-linux.html : "If you have offload features enabled and you see chksum incorrect in tcpdump output, without any packet errors and your network is working properly: it is nothing to worry about because the checksum is actually calculated on the network adapter and the tcpdump is showing the checksum calculated on kernel level."
350
351
351
352
:question: Error MSB3491 on Windows: "Could not write lines to file. The fully qualified file name must be less than 260 characters"
352
353
353
-
:white_check_mark: Possible solutions are f.e.
354
+
:white_check_mark: Possible solutions are e.g.:
354
355
* Just clone repository https://github.com/SICKAG/sick_lidar_localization into a short path, f.e. directly to `C:\`:
This is the recommended solution. Working on shared folder might cause errors using ROS-2 on Windows.
361
+
* Alternatively, use subst to shorten long paths, f.e.:
360
362
```
361
363
subst <long_path_to_sick_lidar_localization> s:
362
364
cd /d s:\
363
365
```
364
-
* See https://docs.ros.org/en/foxy/Guides/Installation-Troubleshooting.html:
366
+
* Alternatively, See https://docs.ros.org/en/foxy/Guides/Installation-Troubleshooting.html:
365
367
* Run regedit.exe, navigate to Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem, and set LongPathsEnabled to 0x00000001 (1).
366
-
* Hit the windows key and type Edit Group Policy. Navigate to Local Computer Policy > Computer Configuration > Administrative Templates > System > Filesystem. Right click Enable Win32 long paths, click Edit. In the dialog, select Enabled and click OK.
368
+
* Hit the windows key and type Edit Group Policy (gpedit.msc). Navigate to Local Computer Policy > Computer Configuration > Administrative Templates > System > Filesystem. Right click Enable Win32 long paths, click Edit. In the dialog, select Enabled and click OK.
0 commit comments