SLAA476B February   2011  – July 2019 BQ2040 , BQ2040 , BQ2060A , BQ2060A , BQ2063 , BQ2063 , BQ2083-V1P3 , BQ2083-V1P3 , BQ2084-V143 , BQ2084-V143 , BQ2084-V150 , BQ2084-V150 , BQ2085-V1P3 , BQ2085-V1P3 , BQ20Z40-R1 , BQ20Z40-R1 , BQ20Z70-V160 , BQ20Z70-V160 , BQ20Z80A-V110 , BQ20Z80A-V110 , BQ28400 , BQ28400 , BQ78PL114 , BQ78PL114 , BQ78PL116 , BQ78PL116 , LM5145 , LM5145 , MSP430F5500 , MSP430F5500 , MSP430F5501 , MSP430F5501 , MSP430F5502 , MSP430F5502 , MSP430F5503 , MSP430F5503 , MSP430F5504 , MSP430F5504 , MSP430F5505 , MSP430F5505 , MSP430F5506 , MSP430F5506 , MSP430F5507 , MSP430F5507 , MSP430F5508 , MSP430F5508 , MSP430F5509 , MSP430F5509 , MSP430F5510 , MSP430F5510 , TPS40057 , TPS40057 , TPS40170 , TPS40170

 

  1.   Wide-Vin Battery Charger Using SMBus Communication Interface Between MSP430™ MCUs and bq Fuel Gauges
    1.     Trademarks
    2. Introduction
    3. Hardware
      1. 2.1 Overall System Description
      2. 2.2 MSP430F5510 Daughterboard Subsystem
        1. 2.2.1 Subsystem Description
        2. 2.2.2 MSP430F5510 Port Pins Functionality Description
      3. 2.3 Power Stage Board Subsystem
        1. 2.3.1 Subsystem Description
        2. 2.3.2 Input Protection Features
        3. 2.3.3 Constant-Voltage and Constant-Current Feedback
    4. Software
      1. 3.1 SMBus Protocol Description
      2. 3.2 Software File Structure
      3. 3.3 API Calls Description
        1. 3.3.1  UCS_Init ( )
        2. 3.3.2  Timer_Init ( )
        3. 3.3.3  PWM_Init ( )
        4. 3.3.4  ADC_Init ( )
        5. 3.3.5  Fan_Init ( )
        6. 3.3.6  LED_Init ( )
        7. 3.3.7  SMBus_Initialize ( )
        8. 3.3.8  LED_Control ( )
        9. 3.3.9  Fan_Control ( )
        10. 3.3.10 VI_ADC_Read ( )
        11. 3.3.11 SMBus_Select ( )
        12. 3.3.12 Calibrate_Battery ( )
        13. 3.3.13 Delay_Timer ( )
        14. 3.3.14 PWM_Control ( )
        15. 3.3.15 Smbus_Access ( )
        16. 3.3.16 Smbus_Access_PEC ( )
        17. 3.3.17 crc8MakeBitwise ( )
      4. 3.4 Sample Application Description
    5. SBS Supported Commands Using SMBus Protocol
    6. Detailed Sample Application Flow Chart
    7. Battery Status Register Description
      1. 6.1 BatteryStatus (0x16)
    8. MSP430F5510 Daughterboard Schematics
    9. Setting Up the MSP430F5510 Daughterboard Hardware
      1. 8.1 JTAG FET Debugger Interface (Power Up, Program and Debug Options)
      2. 8.2 eZ430 Emulator Interface (Power Up, Program and Debug Options)
      3. 8.3 Power Stage Board (Power Up Option Only)
    10. Battery Calibration Circuit Setup
    11. 10 Battery Voltage and PWM Conversions
    12. 11 Battery Current and PWM Conversions
    13. 12 Power Stage Board Schematics (Generation 1: 40-V Input)
    14. 13 Bode Plot Measurement for Feedback Loop Stability Analysis
    15. 14 Power Stage Board Schematics (Generation 2: 60-V Input)
    16. 15 Setting Up the Power Stage Board Hardware
    17. 16 References
  2.   Revision History

SMBus Protocol Description

The MSP430 microcontroller communicates with the fuel gauge in the smart battery through the SMBus communication protocol. SMBus is based on the I2C protocol and is a two-wire serial interface: serial clock (SCL) and serial data (SDA). The two lines are connected through pullup resistors to VCC, and the idle state of the bus is VCC or logic HIGH. Multiple devices are connected to the SMBus lines in a wired-AND configuration with the premise that the active devices can drive the lines LOW while other devices relinquish bus control by staying in high-impedance state.

Devices that use the SMBus protocol to communicate can be classified as a master or slave device. A master or slave device can transmit or receive data. The device that initiates the communication packet by placing a START condition on the bus and providing clock pulses on the SCL line is considered as the master. After the master places the START condition on the bus, this command is followed by a 7-bit slave address and a Read/Write bit to indicate if the master is receiving or transmitting data, respectively. As each slave device can have a unique 7-bit address, a maximum of 128 devices can be connected to the bus. If there is a slave device with the address requested by the master, the slave acknowledges (ACK) by pulling the SDA line LOW. If not, the SDA line remains HIGH (during the ninth clock pulse on SCL), which is interpreted as a no-acknowledge (NACK). A successful ACK is followed by a stream of 8-bit packets that can be data, SBS commands, or PEC byte. The receiving device must ACK every time it receives an 8-bit packet. Communication ends when the master device places a STOP condition on the bus.

Unlike the I2C protocol, the SMBus protocol has a minimum clock frequency of 10 kHz and a maximum clock frequency of 100 kHz. The SMBus protocol also places a time-out restriction that prevents slave devices from extending the clock (SCL) line LOW for a certain interval before the master issues a STOP condition. A slave can hold the SCL line LOW for 25 ms before time-out occurs, after which the slave should be able to receive a new START condition within 35 ms. Another SMBus feature to improve communication robustness is Packet Error Checking (PEC). The PEC byte is generated by using the cyclic redundancy check (CRC-8) polynomial and is calculated on all bytes including device addresses, Read/Write bits, and SBS commands. The PEC calculation, however, does not include the START, repeated START, ACK, NACK, or STOP bits.

The reference design implements the time-out feature on the MSP430F5510 and also has the API calls to access the fuel gauge with or without PEC. The bq fuel gauges can also transmit or receive data with or without PEC. When the MSP430F5510 is receiving data from the fuel gauge and if it clocks out eight extra cycles, then the fuel gauge correspondingly outputs the PEC byte. When the MSP430F5510 is writing data to the fuel gauge and if it passes the PEC byte, then the fuel gauge compares the value against its own hardware-generated PEC value. If the values match, the fuel gauge issues an acknowledge (ACK); if the values do not match, a no-acknowledge (NACK) is issued before the STOP condition.

For additional details on timing diagrams and specifications, see the System Management Bus (SMBus) Specification [3].