SBOU276 January   2023 INA226 , INA226-Q1

 

  1.   SBOU276 Abstract
  2. 1Trademarks
  3. 2Overview
    1. 2.1 Kit Contents
    2. 2.2 Related Documentation From Texas Instruments
  4. 3Hardware
    1. 3.1 Features
  5. 4Operation
    1. 4.1 Quick Start Setup
    2. 4.2 EVM Operation
      1. 4.2.1 Setup
        1. 4.2.1.1 Driver Installation
        2. 4.2.1.2 Firmware
          1. 4.2.1.2.1 Firmware Debug
        3. 4.2.1.3 GUI Setup and Connection
          1. 4.2.1.3.1 Initial Setup
          2. 4.2.1.3.2 GUI to EVM Connection
      2. 4.2.2 GUI Operation
        1. 4.2.2.1 Homepage Tab
        2. 4.2.2.2 Configuration Tab
        3. 4.2.2.3 Registers Tab
        4. 4.2.2.4 Results Data Tab
      3. 4.2.3 Current Sensing Operation
        1. 4.2.3.1 Detailed Setup
      4. 4.2.4 Direct EVM USB Communication
        1. 4.2.4.1 Standard USB Read and Write Operations
        2. 4.2.4.2 Collect Data Through the USB BULK Channel
      5. 4.2.5 PAMB Compatibility
  6. 5Circuitry
    1. 5.1 Current Sensing IC
    2. 5.2 Input Signal Path
    3. 5.3 Digital Circuitry
  7. 6Schematics, PCB Layout, and Bill of Materials
    1. 6.1 Schematics
    2. 6.2 PCB Layout
    3. 6.3 Bill of Materials

Standard USB Read and Write Operations

Use the serial COM port to read and write registers through USB commands using the following format:

  • Set device address format: setdevice DEVID
    • Where setdevice is always lower case, and DEVID is defined as:
      • The 4 LSBs of the address in decimal format. Ex, for an address of 0x4A, use 10.
    • Note, when the SCB is reset while one or more EVMs are connected, the address will default to the lowest address found.
      • The SCB checks for I2C or SPI at start up, if no device is attached, it will default to SPI. Reset the SCB with an I2C EVM connected to use I2C.
    • For example, to set the INA226 with a register address of 0x4A you could send the command: setdevice 10
    • For this example, the EVM would return the acknowledgment and state ("idle" or "collecting") in JSON format:
      • {"acknowledge":"setdevice 10"}
      • {"evm_state":"idle"}
  • Read register format: rreg ADR
    • Where ADR is the address in hex, and rreg is always lower case.
    • Register addresses can be in upper or lower case, and do not need to be led by '0x'. 0 padding register addresses is also optional. For example, to read register address 0xFF, some valid commands include:
      • rreg ff
      • rreg 00ff
      • rreg 0xFF
        • When '0x' is used, the 'x' must be lower case.
    • For this example, the EVM would return the results and state ("idle" or "collecting") in JSON format:
      • {"acknowledge":"rreg 0xFF"}
      • {"register":{"address":255,"value":8800}}
      • {"evm_state":"idle"}
  • Write register format: wreg ADR VAL
    • Where ADR and VAL are in hex, and wreg is always lower case.
    • Register addresses and values can be in upper or lower case, and do not need to be led by '0x'. 0 padding register addresses and values is also optional. For example, to write register address 0x1 with the value 0x436f, some valid commands include:
      • wreg 0 436f
      • wreg 00 0x436f
      • wreg 0x00 0x436F
        • When '0x' is used, the 'x' must be lower case.
    • For this example, the EVM would return the results and state ("idle" or "collecting") in JSON format:
      • {"acknowledge":"wreg 0x00 0x436f"}
      • {"console":"Writing 0x436f to CONFIGURATION register"}
      • {"evm_state":"idle"}