项目作者: nopnop2002

项目描述 :
Python program for USB-CAN Adapter
高级语言: Python
项目地址: git://github.com/nopnop2002/Robotell-USB-CAN-Python.git
创建时间: 2020-07-07T09:00:44Z
项目社区:https://github.com/nopnop2002/Robotell-USB-CAN-Python

开源协议:

下载


Robotell-USB-CAN-Python

Python program for Robotell USB-CAN Adapter

Background

I’ve bought a Robotell USB-CAN Adapter from AliExpress.
USB-CAN Adapter

The Windows application is published here.
The link described as “ourdev_627692IXWNNX.rar” in the page is the Windows application.
But I can’t understand Chinese.

So, I analyzed the communication message that flows through USB and created a new application with Python.

Software Requiment

  • pyserial

    1. $ sudo apt install python3-pip python3-setuptools
    2. $ python3 -m pip install pyserial
  • socat

    1. $ sudo apt install socat

How to use

  1. $ git clone https://github.com/nopnop2002/Robotell-USB-CAN-Python
  2. $ cd Robotell-USB-CAN-Python
  3. $ python ./usb-can.py --help
  4. usage: usb-can.py [-h] [-p PORT] [-s SPEED] [-u UDP]
  5. [-l {DEBUG,INFO,WARNING,ERROR,CRITICAL}]
  6. optional arguments:
  7. -h, --help show this help message and exit
  8. -p PORT, --port PORT open port
  9. -s SPEED, --speed SPEED
  10. can bit rate
  11. -u UDP, --udp UDP UDP receive port
  12. -l {DEBUG,INFO,WARNING,ERROR,CRITICAL}, --log {DEBUG,INFO,WARNING,ERROR,CRITICAL}
  13. Set the logging level
  • port
    Communication port.
    Default is /dev/ttyUSB0.
    Be sure to specify the correct port in Windows 10.

  • speed
    CAN bit rate.
    Default is 500Kbps.
    Supporting speed is 1M/800K/500K/400K/250K/125K/100K.

  • udp
    UDP port number for receiving commands from the outside.
    Default is 8200

  • log
    Log level.
    Default is WARNING.

Information of the USB-CAN Adapter

These displays are internal information of the USB-CAN Adapter, not CAN FRAME.

  • BAUDRATE is the current speed.
    0x20-0xA1-0x07-0x00 is 0x0007A120(=500,000)

  • VERSION is firmware version.

  • FILTERxx is the current receive filter setting.
    The initial value enables reception of all CAN FRAMEs.

  1. BAUDRATE ID: 0x01FFFED0 DLC: 4 Data: 0x20 0xA1 0x07 0x00
  2. VERSION ID: 0x01FFFFE0 DLC: 8 Data: 0x01 0x00 0x00 0x00 0xC5 0x24 0x00 0x08
  3. CPUINFO0 ID: 0x01FFFFF0 DLC: 8 Data: 0x57 0xFF 0x73 0x06 0x67 0x75 0x54 0x55
  4. CPUINFO1 ID: 0x01FFFFF1 DLC: 8 Data: 0x11 0x30 0x17 0x67 0x00 0x00 0x00 0x00
  5. ABOM ID: 0x01FFFEB0 DLC: 8 Data: 0x00 0x00 0x00 0x00 0xC5 0x24 0x00 0x08
  6. ART ID: 0x01FFFEA0 DLC: 8 Data: 0x00 0x00 0x00 0x00 0xC5 0x24 0x00 0x08
  7. FILTER00 ID: 0x01FFFEE0 DLC: 8 Data: 0x00 0x00 0x00 0x80 0x00 0x00 0x00 0x00
  8. FILTER01 ID: 0x01FFFEE1 DLC: 8 Data: 0x00 0x00 0x00 0xC0 0x00 0x00 0x00 0x00
  9. FILTER02 ID: 0x01FFFEE2 DLC: 8 Data: 0xFF 0xFF 0xFF 0x5F 0xFF 0xFF 0xFF 0x1F
  10. FILTER03 ID: 0x01FFFEE3 DLC: 8 Data: 0xFF 0xFF 0xFF 0x5F 0xFF 0xFF 0xFF 0x1F
  11. FILTER04 ID: 0x01FFFEE4 DLC: 8 Data: 0xFF 0xFF 0xFF 0x5F 0xFF 0xFF 0xFF 0x1F
  12. FILTER05 ID: 0x01FFFEE5 DLC: 8 Data: 0xFF 0xFF 0xFF 0x5F 0xFF 0xFF 0xFF 0x1F
  13. FILTER06 ID: 0x01FFFEE6 DLC: 8 Data: 0xFF 0xFF 0xFF 0x5F 0xFF 0xFF 0xFF 0x1F
  14. FILTER07 ID: 0x01FFFEE7 DLC: 8 Data: 0xFF 0xFF 0xFF 0x5F 0xFF 0xFF 0xFF 0x1F
  15. FILTER08 ID: 0x01FFFEE8 DLC: 8 Data: 0xFF 0xFF 0xFF 0x5F 0xFF 0xFF 0xFF 0x1F
  16. FILTER09 ID: 0x01FFFEE9 DLC: 8 Data: 0xFF 0xFF 0xFF 0x5F 0xFF 0xFF 0xFF 0x1F
  17. FILTER10 ID: 0x01FFFEEA DLC: 8 Data: 0xFF 0xFF 0xFF 0x5F 0xFF 0xFF 0xFF 0x1F
  18. FILTER11 ID: 0x01FFFEEB DLC: 8 Data: 0xFF 0xFF 0xFF 0x5F 0xFF 0xFF 0xFF 0x1F
  19. FILTER12 ID: 0x01FFFEEC DLC: 8 Data: 0xFF 0xFF 0xFF 0x5F 0xFF 0xFF 0xFF 0x1F
  20. FILTER13 ID: 0x01FFFEED DLC: 8 Data: 0xFF 0xFF 0xFF 0x5F 0xFF 0xFF 0xFF 0x1F
  21. FILTER14 ID: 0x01FFFEEE DLC: 8 Data: 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x00
  22. FILTER15 ID: 0x01FFFEEF DLC: 8 Data: 0xFF 0xFF 0xFF 0xBF 0xFF 0xFF 0xFF 0xFF

CAN transmission data

This tool accepts data to send via UDP Broadcast.
Open a new terminal and execute the following command:

  1. $ chmod 777 transmit.sh
  2. $ vi transmit.sh
  3. Please change if necessary.
  4. $ ./transmit.sh

CAN receive filter settings(Standard Frame)

This tool accepts filter to set via UDP Broadcast.
Open a new terminal and execute the following command:

  1. $ chmod 777 stdmask.sh
  2. $ vi stdmask.sh
  3. Please change if necessary.
  4. $ ./stdmask.sh

CAN receive filter settings(Extended Frame)

This tool accepts filter to set via UDP Broadcast.
Open a new terminal and execute the following command:

  1. $ chmod 777 extmask.sh
  2. $ vi extmask.sh
  3. Please change if necessary.
  4. $ ./extmask.sh

Running on Ubuntu 18.04.4

USBCAN-python-1

Running on Windows10

USBCAN-python-Windows

Trouble shooting

Change the log level when the program starts.
You can see receive & transmit packet.
USB-CAN -python-LogLevel

Using ESP32

The ESP32 includes a CAN controller that supports the CAN 2.0B specification standard frame format (11-bit ID) and extended frame format (29-bit ID).
With the ESP32, you can use Windows applications.
https://github.com/nopnop2002/esp-idf-CANBus-Monitor