Skip to content

wagiminator/CH32X035-USB-PD-Adapter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

USB PD Adapter

The USB PD Adapter is a compact variable power supply capable of utilizing nearly any USB Type-C PD power supply with PPS-feature as an input to power your projects with various selectable voltages and high currents. Key parameters such as voltage, current, power, and energy are conveniently displayed on the OLED screen. This adapter is built around the cost-effective (30 cents at the time of writing) and user-friendly CH32X035 32-bit RISC-V microcontroller, which features hardware USB PD support, along with the INA219 voltage and current sensor IC.

USB_PD_Adapter_pic1.jpg

Hardware

Schematic

USB_PD_Adapter_wiring.png

CH32X035 F7P6 32-bit RISC-V USB Microcontroller

CH32X035F7P6 is a low-cost microcontroller that utilizes the QingKe 32-bit RISC-V4C core, supporting the RV32IMAC instruction set along with self-extending instructions. This microcontroller comes with a built-in USB PHY, supporting USB2.0 full-speed device functions and a USB PD PHY with source and sink capabilities. It features a programmable protocol I/O controller (PIOC), an operational amplifier (OPA) with programmable gain (PGA), an analog comparator (CMP), a 12-bit analog-to-digital converter (ADC), an 11-channel touch-key controller, 3 groups of USART, I2C, SPI, multiple timers, and various other peripheral resources. The device can operate at clock frequencies of up to 48MHz and is compatible with a supply voltage range of 2.0V to 5.5V. The CH32X035F7P6 includes 48KB of flash, 20KB of SRAM, and an embedded USB bootloader.

The CH32X035 microcontroller manages several tasks, including power negotiation with the USB PD power supply, INA219 management, user interface control, and computation and presentation of measured values. The user interface is comprised of three buttons and an SSD1306 I²C OLED display with a resolution of 128x32 pixels.

INA219 Current/Power Monitor

The INA219 is a current shunt and power monitor with an I²C-compatible interface. The device monitors both the shunt voltage drop and bus supply voltage, with programmable conversion times and filtering. A programmable calibration value, combined with an internal multiplier, enables direct readouts of current in amperes.

The selected shunt resistance of 10mΩ enables both a very small influence on the circuit and a measurement with a resolution of 1mA. For accurate measurement, a shunt resistor with a low tolerance (1% or better) should be selected. The INA219 is used here to measure the output voltage and output current. It communicates with the MCU via I²C.

HT7533-1 Voltage Regulator

The HT75xx-1 series comprises three-terminal high current low voltage regulators crafted using CMOS technology. They are capable of delivering an output current of 100mA and can handle input voltages as high as 30V. The utilization of CMOS technology guarantees minimal voltage drop and low quiescent current.

The HT7533-1 provides a stable 3.3V supply to all components of the circuit. Ensure that you select a version with a maximum input voltage rating of 30V.

USB_PD_Adapter_pic2.jpg

Software

Compiling and Uploading the Firmware (Linux)

Installing Toolchain (GCC, Python, PyUSB)

The GNU Compiler Collection for RISC-V, Python3, and PyUSB must be installed on your system for compiling and flashing. On Linux (Debian-based), all of this can be done with the following commands:

sudo apt install build-essential libnewlib-dev gcc-riscv64-unknown-elf
sudo apt install python3 python3-pip
python3 -m pip install pyusb

Installing Drivers for the Bootloader

On Linux you do not need to install a driver. However, by default Linux will not expose enough permission to upload your code with the USB bootloader. In order to fix this, open a terminal and run the following commands:

echo 'SUBSYSTEM=="usb", ATTR{idVendor}=="4348", ATTR{idProduct}=="55e0", MODE="666"' | sudo tee /etc/udev/rules.d/99-ch55x.rules
echo 'SUBSYSTEM=="usb", ATTR{idVendor}=="1a86", ATTR{idProduct}=="55e0", MODE="666"' | sudo tee -a /etc/udev/rules.d/99-ch55x.rules
sudo udevadm

Entering Bootloader Mode

The bootloader must be started manually for new uploads. To do this, the board must first be disconnected from the USB port. Now press the BOOT button and keep it pressed while reconnecting the board to the USB port of your PC. The chip now starts in bootloader mode, the BOOT button can be released and new firmware can be uploaded via USB within the next couple of seconds.

Compiling and Uploading

Open a terminal and navigate to the folder with the makefile. Run the following command to compile and upload:

make flash

If you want to just upload the pre-compiled binary, run the following command instead:

python3 ./tools/chprog.py adapter.bin

Uploading Firmware Binary (Windows)

WCH offers the free but closed-source software WCHISPTool to upload firmware with Windows via the USB bootloader. Press the BOOT button and keep it pressed while connecting the board to the USB port of your PC. Release the BOOT button, open the adapter.hex file in WCHISPTool and upload it to the microcontroller.

Operating Instructions

  1. Connect the USB PD Adapter to a USB Type-C PD power supply using a USB-C cable.
  2. Use the INC/DEC buttons to select the desired output voltage in steps of 20mV.
  3. Connect the device to the power consumer via the output screw terminal.
  4. Use the RST button to clear the energy counter.

USB_PD_Adapter_operation.png

References, Links and Notes

USB_PD_Adapter_pic3.jpg USB_PD_Adapter_pic4.jpg

License

license.png

This work is licensed under Creative Commons Attribution-ShareAlike 3.0 Unported License. (http://creativecommons.org/licenses/by-sa/3.0/)