Clara Hobbs 5af504320f Corrected a typo in the README | il y a 7 ans | |
---|---|---|
ChibiOS @ 7cac0e4b08 | il y a 7 ans | |
boards/PD_BUDDY | il y a 7 ans | |
src | il y a 7 ans | |
.gitignore | il y a 7 ans | |
.gitmodules | il y a 7 ans | |
LICENSE | il y a 7 ans | |
Makefile | il y a 7 ans | |
README.md | il y a 7 ans | |
chconf.h | il y a 7 ans | |
halconf.h | il y a 7 ans | |
mcuconf.h | il y a 7 ans |
This is the firmware for the PD Buddy project. Currently, this specifically means the PD Buddy Sink. The firmware is currently under heavy development, but is partially functional.
To compile the firmware, you must first install the GNU ARM Embedded Toolchain. Details of its installation is beyond the scope of this README. Once the toolchain is installed, clone this repository with:
$ git clone --recursive http://git.clayhobbs.com/clay/pd-buddy-firmware.git
This will give you a complete copy of the repository, including the ChibiOS submodule.
You will also need to install some program to flash the firmware. The simplest option is dfu-util, as it requires no extra hardware. If you prefer to use SWD, you could also use stlink or OpenOCD.
With all the dependencies installed, the firmware can be compiled as follows:
$ cd pd-buddy-firmware
$ make
This compiles the firmware to build/pd-buddy-firmware.{bin,elf}
.
The firmware can be flashed in any number of ways, including but not limited to the following:
Set the boot mode switch on the PD Buddy Sink to DFU mode and plug it into your computer. Flash the firmware with:
$ dfu-util -a 0 -s 0x08000000:leave -D build/pd-buddy-firmware.bin
Don’t forget to set the switch back to normal mode after unplugging the device.
If you have an ST-LINK/V2, you can use it to flash the firmware via SWD as follows:
$ st-flash write build/pd-buddy-firmware.bin 0x8000000
OpenOCD can also be used to flash the firmware. For example:
$ openocd -f interface/stlink-v2.cfg -f target/stm32f0x.cfg -c "program build/pd-buddy-firmware.elf verify reset exit"
Currently, there isn’t much to say here. Plug it into your power supply, and
the PD Buddy Sink will negotiate 2.25 A at 20 V. This can be configured by
editing dpm_desired_v
and dpm_desired_i
in src/device_policy_manager.c
,
then recompiling and reflashing.