Skip to content

Arduino library for USB PD sink controller (STUSB4500)

License

Notifications You must be signed in to change notification settings

ardnew/STUSB4500

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

STUSB4500

Arduino library (and Go module) for real-time capabilities of the STUSB4500 USB PD sink controller

This repository and README contains the original Arduino source code and docs. For the TinyGo port, please see the project referenced in the Go module section.


Arduino

Features include:
  • Works with native Arduino Wire (I²C) library
  • USB Power Delivery v2.0 and v3.0 compatible state machine
  • Designed for STUSB4500 Compact Breakout
  • Can analyze and identify all available power profiles
  • Can request and use any arbitrary power profile +5-20V/0-5A in 50mV/10mA increments
    • Does not lose VBUS on power transition, maintains power output
  • Detect cable orientation (CC1/CC2 termination)
  • Uses ALRT/ATCH interrupt pins for efficient response
  • Completely enable/disable power output
  • Provides user callback support for:
    • Cable attach/detach events
    • PD source capability discovery events
  • Set up to 3 custom power profiles for fallback
  • Reformat NVM for default power profiles in standalone mode (not yet implemented)

An example sketch is included that demonstrates callback functionality, analyzing available source power profiles, and setting a custom power profile.

Supported Devices

I can confirm the library functions on the following devices (similar devices should also be supported).

Key Meaning
✔️ Tested, working
Tested, not working
Not tested
Manufacturer Board MCU Status
Adafruit Trinket M0 ATSAMD21E18 (Cortex-M0) ✔️
Adafruit ItsyBitsy M0 ATSAMD21G18 (Cortex-M0) ✔️
Adafruit ItsyBitsy M4 ATSAMD51G19A (Cortex-M4) ✔️
Adafruit Feather M4 ATSAMD51J19A (Cortex-M4) ✔️
Adafruit Grand Central M4 ATSAMD51P20A (Cortex-M4) ✔️
Adafruit STM32F405 Feather STM32F405RG (Cortex-M4) ✔️
PJRC Teensy 3.2 MK20DX256VLH7 (Cortex-M4) ✔️
PJRC Teensy 3.6 MK66FX1M0 (Cortex-M4) ✔️
PJRC Teensy 4.0 MIMXRT1062DVL6A (Cortex-M7) ✔️
PJRC Teensy 4.1 MIMXRT1062DVJ6A (Cortex-M7) ✔️
STMicroelectronics STM32G0 Nucleo-64 STM32G071RB (Cortex-M0) ✔️
STMicroelectronics STM32G0 Nucleo-32 STM32G031K8 (Cortex-M0) ✔️
STMicroelectronics STM32G4 Nucleo-32 STM32G431KB (Cortex-M4) ✔️
Nordic Semiconductor nRF51x (Cortex-M0)
Nordic Semiconductor nRF52x (Cortex-M4)
Nordic Semiconductor nRF53x (Cortex-M33)
Nordic Semiconductor nRF91x (Cortex-M33)
Espressif ESP8266
Espressif ESP32

Troubleshooting

The PD protocol has very rigid timing requirements. These can be difficult to accommodate even in normal circumstances, but is even more difficult since there is another device (our STUSB4500) mediating communication over an I²C bus, which is rather slow. This is partly why the interrupts are vital to successful operation.

Point being, it may be difficult to achieve reliable results on some systems (such as AVR-based devices like Arduino Uno), and you may need to experiment with different microcontrollers.

If you have issues receiving cable attach/detach or PD capability discovery events, ensure the following:

  • You are using a hardware I²C port on the microcontroller
  • The I²C (SDA/SCL) and interrupt (ALRT/ATCH) wires connecting microcontroller and STUSB4500 are as short as possible
  • GND on STUSB4500 is connected to GND on microcontroller
  • VDD (VPP on oxplot breakout) is pulled up to 3.3V (or to same level as I²C bus voltage)
  • VSYS (VCC on oxplot breakout) is pulled down to ground (use microcontroller ground pin)
    • The Sparkfun breakout pulls this high to VDD (according to their schematic), but the datasheet says to connect it to ground if it is not used (and it isn't used, because the device is powered by VBUS from the USB-C receptacle). So I'm not sure about this one. Try pulling this in the opposite direction if you're having issues.

This library has been rewritten and ported to Go for use with the TinyGo Project, with improved performance, stability, and device compatibility.

If feasible, I highly recommend you use that software for future projects (tinygo-stusb4500), because it is subjected to more comprehensive testing, supports many more chips and boards, and won't suffer from the fate of Arduino's Wire (I²C) library (i.e., it will run better).

About

Arduino library for USB PD sink controller (STUSB4500)

Resources

License

Stars

Watchers

Forks

Packages

No packages published