aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/luchie.rs
Commit message (Collapse)AuthorAgeFilesLines
* hid: add mouse buttonsBrian Cully2022-12-061-2/+38
|
* usb: skip usb interface processing until configuredBrian Cully2022-11-301-4/+3
|
* main: remove out-of-date commentBrian Cully2022-11-301-1/+0
|
* system timer: move to structBrian Cully2022-11-301-17/+37
|
* event_filter: add filters for converting abs mouse to trackballBrian Cully2022-11-271-41/+47
|
* main: remove out-dated commentBrian Cully2022-11-271-1/+1
|
* usb: add mousewheel hid implementationBrian Cully2022-11-191-13/+61
|
* cargo: rejigger crate typeBrian Cully2022-11-061-0/+188
convert to hybrid crate, with arch-dependent stuff as a ‘bin’ crate, with the underlying support in ‘lib’. the reason for this change is to allow for automated unit-testing on the device-independent bits. to facilitate this, a ‘t’ alias is provided which will run the unit tests. this target assumes you're on a linux system, but you can't have everything.