Skip to content

BAT board Protocol

Introduction

This page describes the BAT board and its protocol. Basically, this board is responsible for the management of the data and signals provided by the battery pack in R1, iCub, and ergoCub robots. Moreover, it should be noted that in these robots it is always coupled with the BMS board, which is responsible for fine-tuning and managing the battery pack status. When one aims to update the BAT firmware, the correct .hex version ought be selected from the BAT folder. Specifically, there are two different BAT executables: - bat.r1.hex: it addresses R1 robot. - bat.hex: it addresses iCub and ergoCub robots.

There exist two different versions of the BAT FW because the dcdc_management phase is done differently between R1 and iCub/ergoCub. Specifically, in iCub and ergoCub robots, CPU and motors are handled separately, and they can work detached. By contrast, in R1, they work always together. Moreover, these robots do have different battery packs, hence the voltage thresholds are customized in the two FW versions.

In general, as shown in the figures below (illustrating the connection between the BAT and EMS boards in the base of R1/SN003), the BAT can be connected to an EMS board through the CAN connector devoted to receiving the CAN frames sent out by the BAT.

Specifically, at the current status of the development (July 2023), the BAT board can send the following data:

  • Battery Pack Voltage in Volt.
  • Battery Pack Charge in \(\%\).
  • Battery Pack Status (detail will follow).

Communication characteristics

The BAT board sends the pieces of information detailed above with a FIFO cycle of 1 ms. Then, the EMS board handles the CAN frames sent by the BAT, parses them, and finally forwards them to the higher level of the yarprobotinterface at the specific port defined in the configuration files with a frequency of 1 Hz. Furthermore, that info is also sent directly from the BAT to the display attached to the robot, every 10 ms.

Types of data transmitted

As mentioned at the end of the introduction section, the CAN frames sent by the BAT to the EMS and parsed by this latter board are:

  • Battery pack info message sent at address 0x620 as:

    Byte Value Description
    0 Vbattery & 0xFF LSBs of the battery pack voltage
    1 (Vbattery >> 8) & 0xFF MSBs of the battery pack voltage
    2 0x00 Not used
    3 0x00 Not used
    4 battery_charge & 0xFF byte of the battery pack charge
    5 0x00 Not used
    6 0x00 Not used
    7 0x00 Not used
  • Battery pack status message sent at address 0x629 as:

    Byte Value Description
    0 DCDC_status_A & 0xFF DCDC status A
    1 DCDC_status_B & 0xFF DCDC status A
    2 0x00 Not used
    3 0x00 Not used
    4 0x00 Not used
    5 0x00 Not used
    6 0x00 Not used
    7 0x00 Not used

where:

  • DCDC_status_A (bits are summed up together):

    Position BIT[7] BIT[6] BIT[5] BIT[4] BIT[3] BIT[2] BIT[1] BIT[0]
    Value V12board V12board_F V12motor V12motor_F HSM HSM_PG HSM_F HSM_broken
    Description 12V DCDC board regulator 12V DCDC board regulator OVERCURRENT fault 12V DCDC motor regulator 12V DCDC motor regulator OVERCURRENT fault Hot Swap Manager Hot Swap Manager POWER GOOD Hot Swap Manager OVERCURRENT/OVERVOLTAGE fault Hot Swap Manager MOSFETs damaged
    Possible status ON(1)/OFF(0) OC/NORMAL ON/OFF OC/NORMAL ON/OFF HSM output voltage stable after transient/HSM output voltage not guaranteed OC-OV/NORMAL HSM MOSFETs probably burned/NORMAL
  • DCDC_status_B:

    Position BIT[3] BIT[2] BIT[1] BIT[0]
    Value HSM_SW_F HSM_HW_F PB1_restart PB2_restart
    Description OC Fault on the HSM triggered by overcurrent (threshold defined in the FW) OC Fault on the HSM triggered by FLT Pin on the HSM micro Restart phase of the push button 1 Restart phase of the push button 2
    Possible status FAULT_OFF(0)/FAULT_ON(1) FAULT_OFF(0)/FAULT_ON(1) Start-up phase(1)/stable operation(0) Start-up phase/stable operation
  • Final status shown at the port is equal to:

    (DCDC_status_B << 8 ) | DCDC_status_A

Thereby, the end user sees a decimal number on the BAT Display, which can be transformed into BITs and analyzed as described below:

BIT Position 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
VALUE NAN NAN NAN NAN HSM_SW_F HSM_HW_F PB1 PB2 V12board V12board_F V12motor V12motor_F HSM HSM_PG HSM_F HSM_broken
Example:

If we get 172 as a decimal value, then we will have in bits: 

    0000 0000 1010 1100  

The active bits are thus related to:
- HSM_PG
- HSM
- V12motor
- V12board

Data displayed on the YARP port

The user gets the data from a specific YARP port defined in the configuration file. Here's the format:

  • Voltage is displayed in the Volts.
  • Battery charge is displayed in \(\%\).
  • Status is displayed as a 16-bit integer (only the first 10 bits are valid), whose mapping adheres to the tables above.

Moreover, at start-up, a DEBUG message with the initial values of the status (converted to the description strings) is sent to yarprobotinterface. Then, each time the status changes, a DEBUG message is sent to yarprobotinterface, which in turn prints out a description only about the values of those bits that have switched.