Go to file
Ben V. Brown 22ba33ecfe Remove USB 2023-02-04 10:36:08 +11:00
.devcontainer Initial commit for the Development Container config 2023-01-07 15:50:09 +00:00
.github Draft ci action 2023-01-31 08:17:02 +11:00
apps Remove USB 2023-02-04 10:36:08 +11:00
config Remove USB 2023-02-04 10:36:08 +11:00
include/rtos add first commit 2022-08-15 17:20:27 +08:00
platform Remove USB 2023-02-04 10:36:08 +11:00
rtos Removing FPGA dev support 2023-02-02 17:42:33 +11:00
scripts Squashed commit of the following: 2023-01-29 11:16:07 -05:00
services Remove USB 2023-02-04 10:36:08 +11:00
thirdparty Formatting 2023-02-02 07:56:49 +11:00
utils Removing FPGA dev support 2023-02-02 17:42:33 +11:00
.clang-format Create clang-format spec 2023-01-31 21:22:20 +11:00
.gitignore Initial commit for the Development Container config 2023-01-07 15:50:09 +00:00
Dockerfile Update Dockerfile 2023-02-02 07:52:23 +11:00
Makefile Create clang-format spec 2023-01-31 21:22:20 +11:00
README.md Updated README with sound instructions 2023-01-29 11:27:03 -05:00
backup.sh Added backup.sh script 2023-01-04 20:55:59 -05:00
build.sh Add docker 2022-09-25 18:17:03 +10:00
clear.sh Add docker 2022-09-25 18:17:03 +10:00
convert.sh make convert quieter in build logs 2023-02-04 09:58:40 +11:00
docker-compose.yml Removed the "command: bash" line so that ./start_dev.sh works 2023-01-06 15:02:46 -05:00
download.sh Update README.md 2022-12-30 22:33:47 +11:00
notes.txt upstream 2022-12-27 10:27:11 +11:00
start_dev.sh Add docker build env 2022-09-25 17:55:03 +10:00
uart_log.sh Set execute bits 2022-09-25 17:23:47 +10:00

README.md

PineBuds Open Source SDK

This is just the SDK from the wiki (so far), with dockerfile setup to make building easier, and my reverse engineered bestool integrated. The docker image will build bestool for you first, then drop you into the dev container for building and flashing the buds.

Usage

To use this setup to build & flash your PineBuds you will need a system with docker setup at the minimum. Docker is used to (1) make this all much more reprodicible and easier to debug and (2) so that we dont mess with your host system at all. In order to program the buds from inside of the docker container; privileged mode is used. So do be a tad more careful than usual.


./start_dev.sh # This will cause docker to start your working environment; this should take roughly 1-3 minutes depending on your network speed to the GCC hosting server

# Now you will be inside of the container, and your prompt will look akin to "root@ec5410d0a265:/usr/src#"

./build.sh # This will run make and build the output program. If you have weird build errors try running clean.sh or rm -rf'ing the out folder first

# Now that the firmware has finished building; if there are no errors you can load it to your buds

# You may want to back up the firmware currently on the buds - it will be deleted when the new firmware is loaded on:
./backup.sh

# You may need to take the buds out of the case, wait three seconds, place them back. This wakes them up and the programmer needs to catch this reboot.

# You can try the helper script by running
./download.sh

# Or do it manually by :

# Assuming that your serial ports are 0 and 1, run the following to commands to program each bud in series.
bestool write-image out/open_source/open_source.bin --port /dev/ttyACM0
bestool write-image out/open_source/open_source.bin --port /dev/ttyACM1

Changelist from stock open source SDK

  • Long hold (5 ish seconds) the button on the back when buds are in the case to force a device reboot (so it can be programmed)
  • Use the resistor in the buds to pick Left/Right rather than TWS master/slave pairing
  • Pressing the button on the back while in the case no longer triggers DFU mode
  • Debugging baud rate raised to 2000000 to match stock firmware
  • Fixed TWS operation such that putting either bud into the case correctly switches to the other bud
  • Working (mostly) audio controls using the touch button on the buds
  • Turned off showing up as a HID keyboard, as not sure why you would; but it stops android nagging me about a new keyboard

Current bud tap codes

Both pods active

Right Ear:

  • Single tap : Play/Pause
  • Double tap : Next track
  • Hold : Toggle ANC(Currently non functional, WIP)
  • Triple tap : Volume Up

Left Ear:

  • Single tap : Play/Pause
  • Double tap : Previous track
  • Hold : Toggle ANC(Currently non functional, WIP)
  • Triple tap : Volume Down

Single pod active

  • Single tap : Play/Pause
  • Double tap : Next track
  • Hold : Previous track
  • Triple tap : Volume Up
  • Quad tap : Volume Down

Changing audio alerts

The audio alerts are stored in:

config/_default_cfg_src_/res/en/

If you want to change the alert to a custom sound, just replace the sound file you'd like to change (ie config/_default_cfg_src_/res/en/SOUND_POWER_ON.mp3) with your own MP3 with the same name and recompile with ./build.sh!