Skip to content

Control base project for Purdue Robomaster

License

Notifications You must be signed in to change notification settings

RoboMaster-Club/control-base

Repository files navigation

Purdue Robomasters Control Base

This repository contains the shared control code between Purdue RoboMaster robots.

Repository Initialization Guide

git clone https://github.com/RoboMaster-Club/control-base.git
cd control-base
git submodule update --init

VSCode Makefile Environment Setup Guide

Install Tools

VSCode: Download VSCode from here.

Package Manager:

  • Windows: Install MSYS2.
  • MacOS: Install homebrew.
  • Linux: Use the one that comes with your system (eg. apt).

Arm GNU Tools and OpenOCD:

  • Windows: OpenOCD, arm-none-eabi-gcc, and gdb-multiarch by running these commands in MSYS2 terminal. The default installation path is C:\msys64, run C:\msys64\msys2.exe.
pacman -S mingw-w64-x86_64-make
pacman -S mingw-w64-x86_64-openocd
pacman -S mingw-w64-x86_64-arm-none-eabi-gcc
pacman -S mingw-w64-x86_64-gdb-multiarch

Refer to the Common Issues section for local pointer to OpenOCD and GNU toolchain.

  • MacOS: Run these commands in your terminal.
brew install gcc-arm-embedded
brew install openocd
  • Linux: Run these commands in your terminal.
sudo apt update
sudo apt upgrade
sudo apt install openocd
sudo apt install gcc-arm-none-eabi gdb-arm-none-eabi

Check installation and environment variables:

  • Windows: Add C:\msys64\mingw64\bin to PATH.
  • MacOS/Linux: Check tool path installation using which (eg. which openocd). Remember the path for arm-non-eabi-gdb, as this will be used to configure the debug extension.

Set Up VSCode

Install VSCode extensions:

  • Install the VSCode extension Cortex-Debug to enable ARM microcontroller debugging.
  • Edit the extension setting .json file.

Modify Extension settings: Add GDB path by opening your VSCode settings.json in VSCode and add the following to the end of the file. The default installation paths are shown, but you should use the path you found by using which.

  • Windows: "cortex-debug.gdbPath": "c:/msys64/mingw64/bin/gdb-multiarch.exe".
  • MacOS: "cortex-debug.gdbPath": "/opt/homebrew/bin/arm-none-eabi-gdb".
  • Linux: "cortex-debug.gdbPath": "/usr/bin/gdb-multiarch".

[Optional] VSCode IntelliSense Configuration: Adding this to c_cpp_properties.json will link the standard library header files (eg. stdint.h, stdlib.h, math.h).

"C_Cpp.default.compilerPath": "C:/msys64/mingw64/bin/arm-none-eabi-gcc.exe"

Usage

Tasks

VSCode tasks are used to do things like build, clean, or flash the project. Task configurations are located in tasks.json

  • Open the Command Palette in VSCode using [Ctrl/Cmd+Shift+P].
  • Then, select Tasks: Run Tasks and pick the appropriate task.

You can use the shortcut [Ctrl/Cmd+Shift+B] to run the default build task.

Debugging

A debug session can be used to test and diagnose issues. Debug configurations are located in launch.json

  • Navigate to Run and Debug in VSCode or use [Ctrl/Cmd+Shift+D].
  • Select the appropriate launch configuration, depending on if you are using ST-LINK or CMSIS-DAP debugger.
  • Click on the green play button or press [F5] to start a debug session.

Motor Config Example

Motor_Config_t yaw_motor_config = {
        // Comm Config
        .can_bus = 1, // set can bus currently using
        .speed_controller_id = 3,
        .offset = 3690,

        // Motor Reversal Config (if motor is installed in
        // opposite direction, change to MOTOR_REVERSAL_REVERSED)
        .motor_reversal = MOTOR_REVERSAL_NORMAL,

        //external sensor config
        .use_external_feedback = 1,
        .external_feedback_dir = 1, // 1 if the feedback matches with task space direction, 0 otherwise
        .external_angle_feedback_ptr = &g_imu.rad.yaw, // assign the pointer to the external angle feedback
        .external_velocity_feedback_ptr = &(g_imu.bmi088_raw.gyro[2]), // assign the poitner to the external velocity feedback

        // Controller Config
        .control_mode = POSITION_CONTROL, // Control Mode, see control mode for detail
        .angle_pid =
            {
                .kp = 20000.0f,
                .kd = 1000000.0f,
                .output_limit = GM6020_MAX_CURRENT,
            },
        .velocity_pid =
            {
                .kp = 500.0f,
                .output_limit = GM6020_MAX_CURRENT,
            },
    };

Development Conventions

Code Formatting:

// All names must use snake_case.

// Variable names are all lowercase.
float example_float = 1.5f;

// Macros should be all UPPERCASE, and enclosed by ().
#define EXAMPLE_MACRO (3.14f)

// Function names should capitalize the first letter of each word.
float Example_Function() {}

// typedef names should capitalize the first letter of each word and end in \_t.
typedef struct _Example_Struct_s Example_Typedef_t {}

// Enum names should capitalized the first letter of each word and end in \_e.
enum Example_Enum_e {};

/* In general, indent code blocks for functions and if statements as such,
but for switches put cases in the same line. 8*/
void Example_Func()
{
   if (some_condition)
   {
      switch(some_num)
      {
      case 0:
         break;
      default:
         break;
      }
   }
}

// For multiline macros, indent as such:
#define YOUR_MACRO        \
   {                      \
        FIRST_LINE = 0,   \
        SECOND_LINE = 1,  \
        THIRD_LINE = 2,   \
   }

Common Issues

1. Windows fails to initializing CMSIS-DAP debugger.

Solution: Go to device manager and uninstall the usb device (probably having some error message in the list). Unplug and plug in the debugger again.

2. Tools (OpenOCD, make tools) not found

Failed to launch OpenOCD GDB Server:...

or

mingw32-make: The term 'mingw32-make' is not recognized as a name of a cmdlet, function, script file, or executable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.

Solution 1: Add openocd.exe to system environmental variable. If you followed the installation instruction in this README file, then OpenOCD should be install at default location C:\msys64\mingw64\bin\openocd.exe, for windows user. Add C:\msys64\mingw64\bin to system executable path.

Solution 2: If you don't want to mess with the system path, you could also add local openocd path in .vscode/launch.json. Add attribute serverpath by adding "serverpath": "C:\\msys64\\mingw64\\bin\\openocd.exe" in configuration.

restarting the terminal is likely needed for new environment variables to take effect.

Standard Debug Procedure

These are common errors to check for:

  • Ensure the IMU is firmly attached.
  • Verify the remote functionality, especially the dial wheel.
  • Confirm the debugger is properly connected.
  • Check the connection of wired peripherals.

Modifications

  • Change samepleFreq in MahonyAHRS.c, this will affect the fusion result.
  • Initialize a task for imu in FreeRTOS environment.