HOME
  • GM-3568JHF
  • M4-R1
  • M5-R1
  • SC-3568HA
  • M-K1HSE
  • CF-NRS1
  • CF-CRA2
  • 1684XB-32T
  • 1684X-416T
  • C-3568BQ
  • C-3588LQ
  • GC-3568JBAF
  • C-K1BA
Shop
  • English
  • 简体中文
HOME
  • GM-3568JHF
  • M4-R1
  • M5-R1
  • SC-3568HA
  • M-K1HSE
  • CF-NRS1
  • CF-CRA2
  • 1684XB-32T
  • 1684X-416T
  • C-3568BQ
  • C-3588LQ
  • GC-3568JBAF
  • C-K1BA
Shop
  • English
  • 简体中文
  • SC-3568HA

    • Introduction

      • SC-3568HA Overview
    • Quick Start Guide

      • OpenHarmony Overview
      • Image Flashing
      • Setting Up the Development Environment
      • Hello World Application and Deployment
    • Application Development

      • ArkUI

        • Chapter 1 Introduction to ArkTS Language
        • Chapter 2 Introduction to UI Components and Practical Applications (Part 1)
        • Chapter 3 Introduction to UI Components and Practical Applications (Part 2)
        • Chapter 4 Introduction to UI Components and Practical Applications (Part 3)
      • Expand

        • Chapter 1 Getting Started Guide
        • Chapter 2 Referencing and Using Third-Party Libraries
        • Chapter 3: Application Compilation and Deployment
        • Chapter 4: Command-Line Factory Reset
        • Chapter 5: System Debugging -- HDC (Huawei Device Connector) Debugging
        • Chapter 6 APP Stability Testing
        • Chapter 7 Application Testing
    • Device Development

      • Chapter 1 Environment Setup
      • Chapter 2 Download Source Code
      • Chapter 3 Compiling Source Code
    • Peripheral And Iinterface

      • Raspberry Pi interface
      • GPIO Interface
      • I2C Interface
      • SPI communication
      • PWM (Pulse Width Modulation) control
      • Serial port communication
      • TF Card
      • Display Screen
      • Touch
      • Audio
      • RTC
      • Ethernet
      • M.2
      • MINI-PCIE
      • Camera
      • WIFI&BT
      • Raspberry Pi expansion board
    • Frequently Asked Questions

      • Resource Downloads
  • M-K1HSE

    • Introduction

      • M-K1HSE Introduction
    • Quick Start

      • Development environment construction
      • Source code acquisition
      • Compilation Notes
      • Burning Guide
    • Peripherals and interfaces

      • 01 Audio
      • 02 RS485
      • 03 Display
    • System customization development

      • System transplant
      • System customization
      • Driver Development
      • System Debugging
      • OTA Update

Raspberry Pi expansion board

1. Raspberry Pi RS485/CAN expansion board

SC-3568HA does not support CAN communication. You can use this expansion board to expand one CAN channel through SPI communication.

Expansion board physical picture:

TOOL

Expansion board pin comparison diagram:

TOOL

2. CAN communication

2.1 DTS Configuration

This expansion board uses MCP2515 to implement CAN communication. The DTS configuration of MCP2515 is as follows:

Warning

The MCP2515 is not adapted in the firmware. If you need to use the CAN interface, you can configure it according to the following content.

  • arch/arm64/boot/dts/rockchip/rk3568-toybrick-x0-linux.dts
    / {
        mcp251x_clk: mcp251x-clk {
                    compatible = "fixed-clock";
                    #clock-cells = <0>;
                    clock-frequency = <12000000>;       //根据MCP2515模块的硬件晶振设置 12MHz
            };
    };

    &spi3{
    	status = "okay";
        pinctrl-0 = <&spi3m1_cs0 &spi3m1_pins>;
        pinctrl-1 = <&spi3m1_cs0 &spi3m1_pins_hs>;
        max-freq = <5000000>;
        mcp2515: mcp2515 {
            compatible = "microchip,mcp2515";
            pinctrl-names = "default";
            pinctrl-0 = <&mcp2515_irq1_pins>;
            reg = <0>;
            clocks = <&mcp251x_clk>;
            spi-max-frequency = <2000000>;
            interrupt-parent = <&gpio3>;
            interrupts = <RK_PB1 IRQ_TYPE_EDGE_FALLING>;
            vdd-supply = <&vcc3v3_sys>;
            xceiver-supply = <&vcc3v3_sys>;
            status = "okay";
        };
    };

    &pinctrl {
        mcp2515 {
            mcp2515_irq1_pins: mcp2515-irq1-pins {
                            rockchip,pins = <3 RK_PB1 RK_FUNC_GPIO &pcfg_pull_none>;
                    };
            };
    };

2.2 CAN transceiver test

First, connect the expansion board to the SC-3568HA board 40PIN

The connection is as shown below:

TOOL

2.2.1 Loopback test

The board comes with a CAN test tool. After connecting the expansion board, enter the command test

Warning

1.For the loopback test, there is no need to connect CAN_H and CAN_L.
2.The connection mode of the pins is one-to-one corresponding, that is, pin 1 corresponds to pin 1 of the expansion board.

Set the baud rate and loopback mode:

    #Disable the CAN0 interface
    ip link set can0 down
    #Set the bit rate to 250000Hz and enable the loopback mode at the same time
    ip link set can0 type can bitrate 250000 loopback on
    #Enable the CAN0 interface
    ip link set can0 up

Open two terminal windows and test can0 self-transmission and reception:

    #Terminal 1
    candump can0

    #Terminal 2
    cansend can0 -i 0x321 0x11 0x22 0x33 0x44 0x55 0x66 0x77 0x88

    # Or use only one terminal
    candump can0 &
    cansend can0 -i 0x321 0x11 0x22 0x33 0x44 0x55 0x66 0x77 0x88

The test results are as follows:

  • Terminal 1:
TOOL
  • Terminal 2:
TOOL

2.2.2 Communication test with CAN analyzer

Connect the expansion board and the analyzer.

TOOL
Expansion BoardCAN Analyzer
CAN_HCAN_H
CAN_LCAN_L

Set the baud rate and test

    #Disable the CAN0 interface
    sudo ip link set can0 down
    #Set the bit rate to 250000Hz
    sudo ip link set can0 type can bitrate 250000
    #Enable the CAN0 interface
    sudo ip link set can0 up

    #Send (Standard frame, data frame, ID: 7ff, data: 11223344556677)
    cansend can0 -i 0x7ff 0x11 0x22 0x33 0x44 0x55 0x66 0x77 0x88

    #Receive
    candump can0
  • Terminal test results:
TOOL
  • CAN analyzer test results:
TOOL

3. RS485

The expansion board 485 supports automatic switching of the receiving and sending states without program control. You only need to connect the 8th and 10th pins of the expansion board to the 8th and 10th pins of the 40PIN of SC-3568HA, and then connect the 485 device to the A and B of the expansion board for receiving and sending.

TOOL
Edit this page on GitHub
Last Updated:
Contributors: zsl, zwhuang
Prev
WIFI&BT