Changes between Initial Version and Version 1 of BuildingAPC/Ubuntu20pt04_Focal_Install


Ignore:
Timestamp:
Apr 8, 2021, 5:52:59 PM (3 years ago)
Author:
bz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildingAPC/Ubuntu20pt04_Focal_Install

    v1 v1  
     1= Ubuntu 20.04, low-latency, non-realtime =
     2
     3Start by [https://releases.ubuntu.com/20.04/ installing Ubuntu 20.04].
     4
     5Install Peak CAN card hardware (but do not install a driver, yet):
     6  * PCAN-PCI
     7  * PCAN-PCIe
     8  * PCAN-USB
     9  * PCAN-ISA
     10
     11Then install git:
     12{{{
     13sudo apt install git
     14}}}
     15
     16Download the libbarrett source code:
     17{{{
     18cd && git clone -b feature/ubuntu2004 https://git.barrett.com/software/libbarrett
     19}}}
     20
     21Install the libbarrett software dependencies and scripts. This will replace the standard kernel with one compiled for low interrupt latency. This scripts also installs the Peak PCAN driver:
     22{{{
     23cd ~/libbarrett/scripts && ./install_dependencies.sh
     24}}}
     25
     26Compile libbarrett:
     27{{{
     28cd ~/libbarrett && cmake .
     29make -j$(nproc)
     30}}}
     31
     32Install libbarrett:
     33{{{
     34sudo make install
     35}}}
     36
     37Compile libbarrett example programs:
     38{{{
     39cd ~/libbarrett/examples && cmake .
     40make -j$(nproc)
     41}}}
     42
     43= Installing ROS =
     44If your application is based on ROS, you can continue by installing our ROS package:
     45
     46{{{
     47blah
     48}}}