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
Copy file name to clipboardExpand all lines: README.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,18 +44,21 @@ The driver has been tested on:
44
44
1. Install ROS: [Instructions for Ubuntu 16.04](http://wiki.ros.org/kinetic/Installation/Ubuntu)
45
45
2.[Setup your ROS environment](http://wiki.ros.org/ROS/Tutorials/InstallingandConfiguringROSEnvironment)
46
46
3. Download the royale SDK from http://www.pmdtec.com/picoflexx/ and extract it
47
-
4. Extract the linux 64 bit archive from the extracted SDK to `<catkin_ws>/src/pico_flexx_driver/royale`.
47
+
4. Extract the archive that matches your kernel architecture from the extracted SDK to `<catkin_ws>/src/pico_flexx_driver/royale`. You can find out what your kernel architecture is by running `uname -m`.
48
48
49
49
```
50
50
cd <catkin_ws>/src/pico_flexx_driver/royale
51
-
tar -xf <path_to_extracted_royale_sdk>/libroyale-<version_number>-LINUX-64Bit.tar.gz
51
+
tar -xf <path_to_extracted_royale_sdk>/libroyale-<version_number>-LINUX-x86-64Bit/ # uname -m = x86_64
52
+
# or:
53
+
tar -xf <path_to_extracted_royale_sdk>/libroyale-<version_number>-LINUX-arm-32Bit/ # uname -m = armv7l
0 commit comments