Keeping Warthog Updated

Note

If you are upgrading your Warthog from an older version of ROS, please refer to our upgrade instructions here.

Warthog is always being improved, both its own software and the many community ROS packages upon which it depends! You can use the apt package management system to receive new versions all software running on the Warthog.

Getting New Packages

Each Warthog leaves the factory already configured to pull packages from http://packages.ros.org as well as http://packages.clearpathrobotics.com. To update your package and download new package versions make sure that Warthog is connected to the internet and run the following commands:

sudo apt-get update
sudo apt-get dist-upgrade

If you see any errors, please get in touch and we’ll see if we can get you sorted out.

MCU Firmware Update

Warning

Accessing Warthog’s MCU requires access to several hard-to-get-to parts of the robot. Unless absolutely necessary, we do not recommend re-flashing the robot’s MCU firmware.

You need to use an external PC to update Warthog’s MCU firmware. You cannot use Warthog’s internal PC, as installing the firmware requires power-cycling the MCU. Warthog’s MCU controls the power supply to the internal PC. These instructions assume the external PC is running some flavour of Linux with access to Clearpath’s ROS packages.

Follow the below procedure to flash the firmware to Warthog’s MCU:

  1. Place Warthog up on blocks and/or engage the emergency stop by pressing one of the red buttons located on each corner of the robot. Firmware loading does not usually result in unintended motion, but it’s safest to ensure the robot cannot move accidentally.

  2. Download the Warthog firmware package onto your PC:

sudo apt-get install ros-noetic-warthog-firmware
  1. Remove the top panel from the Warthog. We recommend opening the panel to the left, as there are cables that run into the lid which can be strained.

The inside of Warthog's computer box
  1. Warthog’s MCU is located on the underside of the metal frame over the top of the PC. To access it you will need to disconnect all cables from the breakout on the sloped portion on the left and then undo 4 screws anchoring the frame:

The inside of Warthog's computer box Screws on the left Screws on the right

Once the screws are removed, carefully lift the center panel and turn it over to expose the MCU’s micro USB port and buttons.

  1. While pressing BT0 on the MCU, connect the external PC to Warthog’s MCU using a USB cable.

Warthog's MUC's buttons
  1. After connecting the PC you should see a device with a name similar to Bus 001 Device 005: ID 0483:df11 STMicroelectronics STM Device in DFU Mode in the output of lsusb.

Note

If the MCU does not show up as a DFU device in the output of lsusb after completing the above procedure, press and hold BT0 on the MCU press the RST button while holding BT0 down. This will reset the MCU and force it into DFU mode.

With the MCU in DFU mode, run the following command, replacing 001/005 with the value appropriate to the Bus and Device where Warthog’s MCU is connected:

sudo chmod 666 /dev/bus/usb/001/005

Now run the following command to upload the firmware:

dfu-util -v -d 0483:df11 -a 0 -s 0x08000000 -D /opt/ros/noetic/share/warthog_firmware/mcu.bin

You should see about 20 seconds worth of lines output beginning with “Download from image …”. When this is complete you may disconnect the PC from the MCU and power-cycle the robot.