Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 1.5 KB

readme.md

File metadata and controls

28 lines (18 loc) · 1.5 KB

Nightly Build

Requirements

  1. Make sure you meet the Phoenix 6 System Requirements
  2. Install Phoenix 6 using the C++ (Linux) instructions
  3. If using a CANivore, install canivore-usb
  4. Install libsdl2: sudo apt install libsdl2-dev

Modifying the Robot Program

The main robot program is located inside main.cpp.

By default, the Joystick class is used for controller input. Users on Ubuntu 22.04+ or Debian Bullseye may choose to use the GameController class instead.

Build Process

  1. Make a build directory: mkdir build
  2. CD into it: cd build
  3. Generate cmake: cmake ..
  4. Make the code: make
  5. Execute the code: ./Phoenix6-Example

Setting up Generic SocketCAN Adapters

When the canivore-usb kernel module is installed (required when using CANivore), all SocketCAN adapters will be automatically started by the robot program.

However, if it is not installed, then SocketCAN adapters must be manually brought up before running the robot program using ./generic_socketcan_start.sh [CAN interface (default: can0)].