GithubHelp home page GithubHelp logo

rivasiv / oscc Goto Github PK

View Code? Open in Web Editor NEW

This project forked from polysync/oscc

0.0 1.0 0.0 31.92 MB

Open Source Car Control ๐Ÿ’ป๐Ÿš—๐Ÿ™Œ

Home Page: http://oscc.io

License: Other

Eagle 83.40% Makefile 3.26% C 4.28% C++ 2.93% Arduino 5.73% Processing 0.28% Groff 0.06% Python 0.06%

oscc's Introduction

The Open Source Car Control Project is a hardware and software project detailing the conversion of a late model vehicle into an autonomous driving research and development vehicle.

See the Wiki for full documentation, details and other information.

Repository Contents

  • /3d_models - Technical drawings and 3D files for board enclosures and other useful parts.
  • /assets - Diagrams and images used in the wiki.
  • /boards - PCB schematics and board designs for control modules.
  • /control - Utilities for controlling a vehicle.
  • /firmware - Arduino code for the various modules.
  • /vehicle_info - Information on specific vehicles such as sensor outputs and wiring diagrams.

Boards

Once we finish testing and validating the board designs we will be releasing the schematics and design files along with the board test plans and testing firmware. Check back soon for complete designs. Once we have validated the boards we will be shipping the boards as a kit. Thanks to Trey German and Macrofab for help desiging the boards and getting them made.

Click Here to pre-order your autonomy kit now.

Building and Installing Arduino Firmware

The OSCC project is built around a number of individual modules that interoperate to create a fully controllable vehicle. These modules are built from Arduinos and Arduino shields designed specifically for interfacing with various vehicle components. Once these modules have been programmed with the accompanying firmware and installed into the vehicle, the vehicle is ready to receive control commands sent over a CAN bus from a computer running a control program.

Pre-requisites: You must already have arduino core installed on your machine.

sudo apt-get install arduino-core

OSCC uses Arduino makefiles to avoid some of the limitations of the Arduino IDE. Using this method you can build, upload, and monitor the code. Check out Arduino-Makefile for more information.

Building Steering Firmware

Navigate to the directory for the steering firmware.

cd $OSCC-PROJECT-DIR/firmware/steering/kia_soul_ps/

Once you are in the home directory of the steering code, build it using the command below.

make

Once the firmware is successfully built you can upload it to the corresponding Arduino module. Connect to the Arduino with a USB cable and then run the command. Sometimes it takes a little while for the Arduino to initialize once connected, so if there is an error thrown initially, try waiting a little bit and then retrying the command.

make upload

Building Throttle Firmware

Navigate to the directory for the throttle firmware.

cd $OSCC-PROJECT-DIR/firmware/throttle/kia_soul_ps/

Once you are in the home directory of the throttle code, build it using the command below.

make

Once the firmware is successfully built you can upload it to the corresponding Arduino module. Connect to the Arduino with a USB cable and then run the command below. Sometimes it takes a little while for the Arduino to initialize once connected, so if there is an error thrown initially, try waiting a little bit and then retrying the command.

make upload

Building Brake Firmware

Navigate to the directory for the throttle firmware.

cd $OSCC-PROJECT-DIR/firmware/brake/kia_soul_ps/

Once you are in the home directory of the brake code, build it using the command below.

make

Once the firmware is successfully built you can upload it to the corresponding Arduino module. Connect to the Arduino with a USB cable and then run the command below. Sometimes it takes a little while for the Arduino to initialize once connected, so if there is an error thrown initially, try waiting a little bit and then retrying the command.

make upload

Building CAN gateway Firmware

Navigate to the directory for the CAN gateway firmware.

cd $OSCC-PROJECT-DIR/firmware/can_gateway/kia_soul_ps/

Once you are in the home directory of the CAN gateway code, build it using the command below.

make

Once it is successfully built you can upload it to the corresponding Arduino module. Connect to the Arduino with a USB cable and then run the command below. Sometimes it takes a little while for the Arduino to initialize once connected, so if there is an error thrown initially, try waiting a little bit and then retrying the command.

make upload

Monitoring Arduino modules

It is sometimes useful to monitor individual Arduino modules, to check for proper operation, and debug. To do this simply run the command below (when connected via USB).

make monitor

The GNU utility screen is used to by default to communicate with the Arduino via serial over USB. It can be used to both receive the output of any 'Serial.print' statements in your Arduino code, and to push commands over serial to the Arduino. If you don't already have it installed you can get it with the command below. In order to exit screen use C-a \.

sudo apt-get install screen

To do more in-depth debugging you can use any of a number of serial monitoring applications. Processing can be used quite effectively to provide output plots of data incoming across a serial connection.

Controlling your Vehicle

Now that all your Arduino modules are properly setup, it is time to start sending control commands. There is an example application to do this that uses the Logitech F310 Gamepad. The example interfaces to the joystick gamepad via the SDL2 joystick library and sends CAN commands over the control CAN bus via the Kvaser CANlib SDK. These CAN control commands are interpreted by the respective Arduino modules and used to actuate the vehicle.

Pre-requisites: You must already have a Logitech F310 gamepad, the SDL2 library and CANlib SDK installed. You must also have a CAN interface adapter, such as the Kvaser Leaflight.

logitech-F310

Install the SDL2 library with the command below.

sudo apt-get install libsdl2-dev

Install the CANlib SDK via the following procedure.

CANlib-SDK

Building Joystick Commander Code

Navigate to the directory for the joystick commander code.

cd $OSCC-PROJECT-DIR/control/joystick_commander

Once you are in the home directory of the joystick commander build the code with the included Makefile.

make

Now that the joystick commander is built it is ready to be run. However, we need to determine what CAN interface the control CAN bus is connected to on your computer. This interface will be passed to the joystick commander as an argument, and will be used to allow the joystick commander to communicate with the CAN bus. To figure out what CAN interface your control CAN bus is connected to, navigate to the examples directory in the CANlib install.

cd /usr/src/linuxcan/canlib/

Run make to make sure all the CANlib examples are built.

make

Then navigate to the examples directory of the CANlib install.

cd /usr/src/linuxcan/canlib/examples/

You can use the "listChannels" and "canmonitor" examples to determine which CAN channel your control bus is connected to. Can monitor will dump any data on a selected channel and list channels will tell you what channels are avaliable. You can use both to determine which channel you will need to use. Once you know the correct chanel number you can run the joystick example with the command below.

./joystick-commander <channel-number>

Controlling the Vehicle with the Joystick Gamepad

Once the joystick commander is up and running you can use it to send commands to the Arduino modules. The controls are listed when the programs starts up. Be sure the switch on the back of the controller is switched to the 'X' position, not 'D'. The vehicle will only response to commands if control is enabled with the start button. The back button disables control.

Additional Vehicles & Contributing

OSCC currently has information regarding the Kia Soul PS (2014-2016), but we want to grow! The repository is structured to facilitate including more vehicles as more is learned about them.

Please see CONTRIBUTING.md.

License Information

Hardware source materials (e.g. schematics, board layouts, wiring diagrams, data sheets, physical installation documentation, 3D models, etc.) for the OSCC (Open Source Car Control) Project are licensed under Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0).

Firmware source for the OSCC (Open Source Car Control) Project is licensed under GNU General Public License (GPLv3) unless otherwise noted (e.g. 3rd party or permissive dependencies, etc.).

Software source for the OSCC (Open Source Car Control) Project is licensed under the MIT License (MIT) unless otherwise noted (e.g. 3rd party dependencies, etc.).

Please see LICENSE.md for more details.

Contact Information

Please direct questions regarding OSCC and/or licensing to [email protected]

Distributed as-is; no warranty is given.

Copyright (c) 2016 PolySync Technologies, Inc. All Rights Reserved.

oscc's People

Contributors

evanlivingston avatar lucasbuckland avatar annietupek avatar siemensrachel avatar cotos avatar laffan avatar nathanaschbacher avatar

Watchers

Rostyslav Ivasiv avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.