Skip to content

GitLab

  • Menu
Projects Groups Snippets
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • Husky Usage Guide Husky Usage Guide
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Releases
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Infrastructure Registry
  • Wiki
    • Wiki
  • Activity
  • Graph
  • Jobs
  • Commits
Collapse sidebar
  • Wouter Jansen
  • Husky Usage GuideHusky Usage Guide
  • Wiki
  • Home

Home · Changes

Page history
Update home authored Feb 24, 2023 by Wouter Jansen's avatar Wouter Jansen
Show whitespace changes
Inline Side-by-side
home.md
View page @ a89b9395
......@@ -40,6 +40,7 @@ This guide was updated last on 2023-02-23.
- [Software versions](#software-versions)
- [Network](#network)
- [Bash alias commands](#bash-alias-commands)
- [Fixed USB port names](#fixed-usb-port-names)
- [Other resources](#other-resources)
## The basics
......@@ -384,6 +385,17 @@ To assign a static IP:
### Bash alias commands
the commands like `startServer` and `startOuster` are defined in `~/.bash_aliases`.
### Fixed USB port names
To have a fixed name to identify a USB device with, like done for the RTIS Sync USB connection, you can use a udev rule.
1. Check the device you want to change with `lsusb` command and look for the ID in _xxxx:yyyy_ format.
2. Create a new udev rule by doing opening `/etc/udev/rules.d/99-cosys.rules`
3. In your rules, type the following information about the device:
```bash
SUBSYSTEM="tty", ATTRS{idVendor}=="xxxx", ATTRS{idProduct}=="yyyy", SYMLINK+="NAME"
```
You can use the RTIS Sync USB as an example.
## Other resources
- Official Husky guide: https://docs.clearpathrobotics.com/docs/robots/outdoor_robots/husky/user_manual_husky
- More Husky tutorials: https://docs.clearpathrobotics.com/docs/robots/outdoor_robots/husky/tutorials_husky
......
Clone repository
  • The basics
    • Layout
    • Status panel
    • Starting up
    • Using the controller
    • Orientation reference
    • Specifications
    • Safety emergency-stop and lockout
  • Network Setup
    • Network basics
    • Internet access
  • USB drive
  • Sensors
    • eRTIS
    • Ouster OS0-128 LiDAR
    • Intel Realsense d435i camera
  • Using ROS
    • Default nodes
    • Default topics
    • Motion topics
    • Odometry topics
    • Diagnostics topics
    • Custom workspace
    • ROS Husky packages
    • Navigation with ROS
    • Publishing eRTIS data
    • Publishing Ouster OS0-128 LiDAR data
    • Publishing Intel Realsense d435i camera data
    • Transformation tree
  • Configuration
    • Software versions
    • Network
    • Bash alias commands
  • Other resources