Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cargo: rejigger crate type | Brian Cully | 2022-11-06 | 1 | -188/+0 |
| | | | | | | | | | | 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. | ||||
* | main: i like unicode | Brian Cully | 2022-10-31 | 1 | -4/+4 |
| | |||||
* | cirque: remove ref to stm32 clock struct | Brian Cully | 2022-10-29 | 1 | -1/+1 |
| | | | | i don't want this driver to be hardware dependent. | ||||
* | led: remove module, it's unnecessary | Brian Cully | 2022-10-28 | 1 | -6/+4 |
| | |||||
* | touchpad now works over spi | Brian Cully | 2022-10-27 | 1 | -5/+5 |
| | |||||
* | spi: use 1.5mhz, tweak some logging | Brian Cully | 2022-10-26 | 1 | -3/+12 |
| | |||||
* | spi init: use mode 1 explicitly | Brian Cully | 2022-10-25 | 1 | -6/+2 |
| | |||||
* | pull in cirque driver | Brian Cully | 2022-10-25 | 1 | -1/+10 |
| | | | | seems broken rn, but it's a start. | ||||
* | convert to gd32f303 (stm32f103) bluepill variant | Brian Cully | 2022-10-25 | 1 | -150/+135 |
| | |||||
* | this is also broken, but at least it ain't mine | Brian Cully | 2022-08-27 | 1 | -32/+94 |
| | |||||
* | usb peripheral now starting ‘connect()’ | Brian Cully | 2022-08-11 | 1 | -5/+31 |
| | |||||
* | use ‘nb’ crate instead of custom type | Brian Cully | 2022-08-08 | 1 | -11/+7 |
| | |||||
* | log in panics if possible. | Brian Cully | 2022-08-08 | 1 | -12/+21 |
| | |||||
* | update log inteface, add (and use) ‘log!’ macro. | Brian Cully | 2022-08-08 | 1 | -2/+3 |
| | |||||
* | imports | Brian Cully | 2022-08-08 | 1 | -2/+2 |
| | |||||
* | mark logging functions as unsafe | Brian Cully | 2022-08-08 | 1 | -2/+2 |
| | | | | these are writing to ‘static mut’ variables. | ||||
* | get serial printing on usart1 (tx: pa2, rx: pa3) | Brian Cully | 2022-08-08 | 1 | -5/+29 |
| | |||||
* | Put blink in separate ‘Task’ struct. | Brian Cully | 2022-08-06 | 1 | -49/+11 |
| | |||||
* | Blinky on a hardware timer, with ‘wfi’ in between. | Brian Cully | 2022-08-06 | 1 | -11/+82 |
| | |||||
* | Move LED to separate module. | Brian Cully | 2022-08-04 | 1 | -34/+11 |
| | |||||
* | Get rid of nightly features by using ‘global_asm’. | Brian Cully | 2022-08-03 | 1 | -25/+3 |
| | | | | Now compiles and runs on stable. | ||||
* | Blinking achieved. | Brian Cully | 2022-08-03 | 1 | -3/+50 |
| | |||||
* | Initial bootstrap into ‘main’. | Brian Cully | 2022-08-03 | 1 | -0/+38 |