• Stars
    star
    118
  • Rank 290,051 (Top 6 %)
  • Language
    C
  • License
    GNU General Publi...
  • Created about 7 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The RISE Self-Driving Model Vehicle Platform

The RISE Self-Driving Model Vehicle Platform (SDVP)

This is the source code and hardware design for a model vehicle platform developed and maintained at RISE Research Institutes of Sweden. The platform currently has full support for cars with Ackermann steering, robots with differential steering and partial support for quadcopters.

Self-Driving in this context means that the vehicles can follow a pre-programmed path outdoors accurately using RTK-GNSS. The paths can be edited using RControlStation as a set of points with different time stamps or velocities, depending on the mode. It is also possible to send paths to the vehicles with time stamps in real-time from external applications (either using UDP or TCP to RControlStation, or directly over a radio link) for e.g. following other vehicles.

Some details about the position estimation and the autopilot can be found in our published article.

Figure 1 shows a screenshot of RControlStation, which is a GUI where model vehicles can be viewed, configured and controlled in real time.

RControlStation

Here is a (quire outdated) video with a test of RISE SDVP on a model car:

RC Car Test

Repository Structure

The repository is organized as follows:

  • Documentation
    Contains Markdown files with documentation and tutorials, and the directories:
    • PDF
      Contains generated PDFs from the markdown files. Will be cleared when the documentation is built.
    • Pictures
      Contains photos and drawings, which are referenced in the documentation files.
  • Embedded
    Contains embedded software for various PCBs of the platform.
    • Mote
      The software for the mote PCB, which can be used as a USB-to-802.15.4 bridge to communicate with the model cars.
    • RC_Controller
      The software for the control PCB. This is where the sensor fusion, position estimation and autopilot for the car runs.
    • uwb_board
      The software for the Ultra-wideband ranging boards.
  • Hardware
    KiCad PCB projects with the PCBs for the platform.
    • Controller
      The PCB that is referred to as the controller in this documentation. The RC_Controller software runs on this one, and this is the main PCB that this platform is built on.
    • RFMote_PA
      The USB-to-802.15.4 bridge mentioned above. Note that if an IP-connection with e.g. a raspberry pi is used, this one is not needed.
    • uwb_pcb
      A PCB with a DWM1000 module, a STM32F4 microcontroller, a MPU9250 IMU, a CAN-transceiver and some DC/DC converters. The uwb_board software mentioned above runs on this one. This PCB is not needed, but it is useful for experimenting with UWB positioning.
  • Linux
    Contains Linux software, mostly written using the Qt framework, for the platform.
    • Car_Client
      This is a Qt command line program that can run on e.g. a raspberry pi, which is connected to the Controller PCB over USB. Car_Client provides a TCP bridge, which can be used to access the Controller over a network connection instead of a radio. Car_Client also runs the Chronos software (which might be documented later) and can simulate cars for development without having access to a model car. Car_Client can also connect to cameras supported by Video For Linux (V4L) and stream them as JPEG images to RControlStation.
    • RControlStation
      This is a desktop program that can stream realtime data from the cars (including video), and edit trajectories for the model cars on top of OpenStreetMap. It can also act as a RTK base station, or connect to one. There are also many other functions, such as providing a TCP bridge to control cars and even emulating GPS signal using software-defined radio. It is a Qt Creator project, install the following packages under Ubuntu 18.04 or later to build it: build-essential qtcreator qt5-default qtquickcontrols2-5-dev qtdeclarative5-dev libqt5serialport5-dev
    • RControlStationComm
      A C library that can be used to interface cars and trajectories from RControlStation, when using the TCP server in RControlStation.
    • CarNetworkTester
      A test program where XML messages that can be decoded by RControlStation can be generated and sent, and the response can be studied. Useful for developing independent programs that interface with RControlStation and the model cars over TCP.
    • scala_test
      Scala and java-based software to perform automatic testing of the model cars in real-time using ScalaCheck. RControlStationComm is used to interface with the cars and RControlStation. An interactive scala shell where the cars can be controlled, including the ability to generate trajectories to arbitrary points and orientations avoiding static obstacles, is also included. A paper where this is presented in detail is currently being written.
    • Pi
      Scripts and UDEV rules for a raspberry pi (or similar) embedded Linux computer that is installed on a model car and runs Car_Client.

Hardware

Figure 2 shows a hardware diagram of a working configuration of the RISE-SDVP platform. The cyan-colored boxes to the left are the components on a model car, and the green boxes to the right are a laptop computer connected over 4G to the model car. The laptop computer also runs a RTK-GNSS base station, so that the model car can position itself with around 3 cm accuracy relative to the GNSS antenna connected to the receiver on the laptop.

Hardware Diagram

Here is a video that shows how a model car like the one in the block diagram above was built:

RC Car Build

There are many different configuration of hardware components that can result in a working RISE SDVP model car. What they need to function in general is:

  • The Controller, which runs the embedded software that controls the motion and estimates the position of the model car.
  • A VESC motor controller that controls the motor on the car over CAN-bus, and provides speed and position estimation from the motor that is used in the sensor fusion in the controller.
  • A computer that runs the RControlStation software.
  • A way to communicate between the Controller PCB and RControlStation. The options are:
    • Using the embedded radios on the controller, and our Radio Mote plugged in over USB to the computer running RControlStation.
    • Connecting the controller to an embedded Linux computer using USB, such as the Raspberry PI, and running Car_Client on that computer. Then RControlStation can communicate with the controller over TCP using Car_Client. The TCP connection can then run over a network as usual, such as WiFi or 4G cellular. This is the method that we are using on the setup above.
  • Correction data from a RTK-SN base station within 10 km from where the car operates. There is support for different sources of correction data, such as:
    • Connecting a supported GNSS receiver, such as the Ublox M8T or Ublox M8P, to the computer running RControlStation, and streaming correction data over that connection. This is what we do in the setup above.
    • Connecting to a NTRIP server. This can be done from RControlStation, or by passing an argument to Car_Client if it is used instead of a radio.
    • Our Controller in base station mode, where it will transmit correction data over the 433 MHz radio.
  • Other things that are (obviously) needed are motor, steering servo, power supplies and antennas.

Steering Geometries

There is currently support for two different steering geometries: Ackermann and Differential. In Ackermann steering mode there is one main motor driving the car, and a steering servo controlling the direction; whereas in differential mode there is one motor that drives the wheels on each side of the car and there is no steering servo. By default, the controller is configured for Ackermann steering, but that, and many other settings, can be changed in conf_general.h:

// Set to 1 to enable differential steering
#define HAS_DIFF_STEERING			1
// CAN ID of VESC motor controller for the left motor
#define DIFF_STEERING_VESC_LEFT		0
// CAN ID of VESC motor controller for the right motor
#define DIFF_STEERING_VESC_RIGHT	1

In addition to updating conf_general.h, geometry parameters for the car also have to be updated in RControlStation, as shown in Figure 3:

Car Settings

The most important parameters for Ackermann steering are listed in the following table. Some of them are not used in differential steering mode.

Parameter Description
Gear Ratio The ratio between one wheel revolution and one motor revolution.
Turn Radius The radius of the circle the car follows at maximum steering angle.
Wheel Diameter Diameter of the model car wheels.
Axis Distance Distance between front and rear wheel axis.
Motor Poles Number of motor poles. Usually 2 or 4 for inrunners.
Servo Center PWM signal to output to steering servo when going straight [0 - 1].
Servo Range Steering range. Negative numbers invert the servo direction [-1 - 1].

It is important to get these parameters correct, as they have a large impact on the position estimation and autopilot.

Simulation Mode

It is possible to test the platform without having access to any other hardware than a computer. This can be done by running Car_Client with the following flags:

./Car_Client --usetcp --simulatecars 1:0

This will simulate a model car locally, including the autopilot. Then RControlStation can connecto to localhost over TCP and control the simulated car as if it were an actual model car. Car_Client accepts several different flags that affect the simulation; all flags can be listed using the -h argument:

./Car_Client -h

Setting up a Raspberry Pi 3 Image to run Car_Client

A somewhat pre-configured image for the Raspberry PI 3 can be downloaded here. The login credentials on the image are:

User:     pi
Password: elpgem1

Starting by changing the password is a good idea.

Once the image is up and running, the repository should be updated to the latest version:

cd ~/rise_sdvp
git pull

At boot there is a screen session that starts automatically that runs Car_Client. Before rebuilding Car_Client, the screen session should be stopped with

killall screen

Then Car_Client should be rebuilt

cd ~/rise_sdvp/Linux/Car_Client
qmake -qt=5 DEFINES+=HAS_CAMERA
make clean
make

After that Car_Client can be started, and a connection can be made from RControlStation:

./Car_Client -p /dev/car --useudp --logusb --usetcp

Notice that there are udev rules that map the USB-serial device of the Controller to /dev/car

The next time the raspberry pi boots it will start a screen session with Car_Client. This is done from the ~/start_screen script. It might be a good idea to check if the Car_Client command in that script has the correct arguments for the latest version of rise_sdvp. At this time it should be

screen -d -m -S car bash -c 'cd /home/pi/rise_sdvp/Linux/Car_Client && ./Car_Client -p /dev/car --useudp --logusb --usetcp ; bash'

GPS Emulation using Software-Defined Radio (SDR)

RControlStation also supports generation GPS signals using the Lime SDR. This is work in progress and planned to be useful for automatic HIL testing in the future, but it might be nice to play around with if you have access to a Lime SDR. In order to use it, the Lime Suite has to be installed on your system. Once that is done, RControlStation can be build with Lime SDR support by uncommenting the following line in RControlStation.pro:

# Lime SDR support
#DEFINES += HAS_LIME_SDR

Once RControlStation is compiled with Lime SDR support, a real-time GPS simulation can be started from Tests -> GPS Simulator, which will show the dialog in Figure 4:

GPS Sim

The desired latitude, longitude and height can then simply be set in the dialog. It is also possible to follow a model car and generate its perceived position. The simulation mode can also be used in combination with the GPS Emulator, making it possible to generate GPS signal for a virtual vehicle in real-time.

User Guides, Tutorials and other Resources

  • A work-in-progress user guide with several details on how to use RControlStation can be found here.
  • A tutorial on how to implement new functionality both in the embedded control software and in RControlStation can be found here
  • Our published article

More Repositories

1

bldc

The VESC motor control firmware
C
1,989
star
2

vesc_tool

The source code for VESC Tool. See vesc-project.com
C++
648
star
3

bldc-tool

A Qt program to control and debug my BLDC-controller
C++
234
star
4

vesc_bms_fw

The VESC BMS Firmware
C
183
star
5

bldc_uart_comm_stm32f4_discovery

A project that demonstrates how to communicate between the VESC and a STM32F4 discovery board using UART
C
82
star
6

bldc-bootloader

A bootloader for my custom motor controller. Read more at http://vedder.se/2015/01/vesc-open-source-esc/
C
63
star
7

bldc-logger

A file and video-overlay logger for my BLDC motor controller
C++
49
star
8

nrf51_vesc

BLE-UART bridge for the VESC with packet handling and VESC Tool compatibility
C
48
star
9

SparkSwitch

Active precharce circuit with optional switch input
KiCad Layout
48
star
10

nrf52_vesc

BLE-UART bridge for the VESC with packet handling and VESC Tool compatibility.
C
30
star
11

vesc_express

The source code for the VESC Express
C
26
star
12

nunchuk_rf_hw

Custom PCB for nunchuks
KiCad Layout
23
star
13

QuadcopterSystem

The hardware and software for our quadcopter system
C
22
star
14

vesc_pkg

Official VESC Packages
C
21
star
15

vesc-os-pi

A minimal raspberry pi 3 or 4 image that runs VESC Tool
Shell
19
star
16

vesc_bms_bootloader

Bootloader for the VESC BMS
C
16
star
17

vesc_wand

This is the firmware for the VESC Wand remote control
C
16
star
18

CapPCB

A capacitor PCB for the VESC
KiCad Layout
13
star
19

udp-uart-bridge

UDP to UART bridge for some of my projects
C++
13
star
20

svm_sim

A Space Vector Modulation (SVM) simulator for FOC analysis
C++
12
star
21

nunchuk_mod

The firmware for the mcu of my custom PCB for the wireless nunchuk
C
11
star
22

vesc_fw_archive

VESC Firmware Archive
9
star
23

vesc_gpstm

General purpose STM32G4-codebase that works with VESC Tool
C
9
star
24

summon-arm-toolchain

Build-script for bare metal ARM toolchain - based on esden:s branch
Shell
8
star
25

vesc_braking_resistor

C
7
star
26

display_tool

A simple display graphics editor, mostly useful for the VESC Wand
C++
6
star
27

dwm1001_vesc

VESC Connect for the DWM1001
C
6
star
28

io_board_er

VESC-compatible IO-board
6
star
29

rfboard-chibios

ChibiOS on my RF-boards. Read more at http://vedder.se/2013/04/cc2520-and-stm32-rf-boards/
C
6
star
30

FaultCheck_QuickCheck

The FaultCheck distribution with a QuickCheck example
Makefile
5
star
31

ubx_server

Ubx Server
C++
5
star
32

nrf24l01plus_stm32f100_chibios

NRF24L01+ driver and ChibiOS project for the stm32f100c6t6
C
3
star
33

FaultCheck_ScalaCheck

The FaultCheck tool with ScalaCheck tests and a use case where ScalaCheck is used.
Makefile
1
star