No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Thomas Buck 70ae088d4c some work on firmware and 3d design 1 year ago
..
include some work on firmware and 3d design 1 year ago
pico-sdk @ 2e6142b15b first skeleton of firmware 1 year ago
src some work on firmware and 3d design 1 year ago
CMakeLists.txt continue work on firmware. added debug console. pmw irq counters. 1 year ago
README.md firmware with USB CDC and HID. PMW3360 driver started, not working yet. 1 year ago
debug.sh continue work on firmware. added debug console. pmw irq counters. 1 year ago
flash.sh continue work on firmware. added debug console. pmw irq counters. 1 year ago

README.md

RP2040 Trackball Firmware

For use with Raspberry Pi Pico boards.

Adapted from the dev_hid_composite pico-example from GitHub, as well as the tinyusb-cdc-example from GitHub.

Supports PMW3360 optical mouse sensors.

Quick Start

When compiling for the first time, check out the required git submodules.

git submodule update --init
cd pico-sdk
git submodule update --init

Then do this to build.

mkdir build
cd build
cmake ..
make trackball

And flash the resulting trackball.uf2 file to your Pico as usual.

For convenience you can use the included flash.sh, as long as you flashed the binary manually once before.

make trackball
../flash.sh trackball.uf2

For debugging a serial port will be presented by the firmware. Open it using eg. picocom, or with the included debug.sh script.