aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main.rs
Commit message (Collapse)AuthorAgeFilesLines
* Migrate everything over to separate libraries.Brian Cully2019-08-041-227/+0
| | | | | | | | | | | * `usb-host` is the crate containing the HAL traits. * `bootkbd` is a crate for a bare-bones boot protocol keyboard driver. * `samd21-host` is a crate with an implementation of `usb-host` for a SAMD21 platform, with an example for the trinket-m0 which uses the `bootkbd` driver to print keyboard reports.
* Switch to INFO level logs.Brian Cully2019-08-011-1/+1
| | | | You can't see keyboard reports come in on trace.
* Update dotstar with interrupts disabled.Brian Cully2019-07-301-6/+10
| | | | Output is more solid now, but still flickers badly with heavy serial.
* Update log levels.Brian Cully2019-07-251-7/+7
|
* Move USB host stuff to separate crate.Brian Cully2019-07-251-3/+4
|
* Use log crate instead of hand-rolled solution.Brian Cully2019-07-241-16/+36
| | | | | | | | | | | * Remove my logging macros except *_now variants, since those are still handy. * Move log flush into RTC handler. This probably belongs in a separate timer at some point. * Change all old log messages to log crate's macros, except the Panic and HardFault calls.
* Initial commit.Brian Cully2019-07-231-0/+202