BusMaster

From Embedded Systems Learning Academy
Revision as of 01:53, 17 October 2016 by 243 user2 (talk | contribs)

Jump to: navigation, search

BusMaster

While working on your project understanding what is happening on the CAN bus is extremely important. While there are many ways to monitor this data flow (logging, debug statements, etc.), one of the most useful methods allows you to monitor this traffic in real time. BusMaster is a CAN tracing tool which logs and displays all information on the CAN bus in an extremely easy to use GUI. This page will show you what is needed in order to set up BusMaster and how to use some of the program's basic functionality.


Step 1: Downloading Necessary Files

BusMaster can be found at the following location: BusMaster




You will also need to download VS2013 and MinGW. The links are available after you download the BusMaster Installer


PCAN Dongle Drivers can be found here: Drivers


The correct file for the drivers will be in the usb.zip file and is named: PeakOemDrv.exe


Step 2: Installing

  1. Install VS2013, MinGW, BusMaster, and PCAN Drivers with all default values.
Busmaster install1.png


Pcan driverrs instal3.png

Step 3: Setting up BusMaster

  1. Open BusMaster
  2. Under the CAN menu go to Driver Selection and select PEAK USB
    Busmaster setup1.png

  3. Under the CAN menu go to Channel Configuration and change the Baud Rate to match your CAN bus and click OK.
    Busmaster baud rate.png

  4. Under the CAN menu click Connect
  5. If everything went correctly you should now start receiving any messages that are being sent on the CAN bus.
    Busmaster listening.png

Now that we are receiving messages the next step is to get them to decode properly. That way we can see the physical values of the messages instead of the hex values of the raw data frames. To do this we need to attach a database file to this configuration. Since the DBC file format is proprietary BusMaster uses a similar file type called DBF instead. However, BusMaster comes with a function that will allow us to convert DBC files to DBF files. Please follow the instructions below to convert your file and attach it to this instance.

  1. Under the File menu go to Format Converters
    Busmaster convert1png.png
  2. Select the Other Converters tab and then choose DBC to DBF in the drop down menu
    Busmaster convert2.png
  3. Choose your DBC file as the Input File. The Output File's name and location will be the same as your DBC file except with the extension of .DBF. Close the dialog box when the conversion is complete
  4. Under the CAN menu go to Database then select Associate and choose the newly converted DBF file.
    Busmaster convert3.png

  5. The Message Window should now show the correct names for the messages on the bus. The next step is to interpret the signals in the messages so that we can see what the physical values are.
    Busmaster usage.png

  6. After enabling the interpret function you will see a small + box next to the messages. If you click this box the messages will expand and show you the individual signal values.

  7. Now would be a good time to save you configuration in case your settings get reset so that you do not have to reconfigure BusMaster.