Commit Graph

8 Commits

Author SHA1 Message Date
xenia 01e30c8e59 initial formatting changes
replace DOS endings with UNIX endings, and replace leading tabs with
4x spaces in all files. any non-leading tabs (ie, alignment tabs) are
preserved as originally in the files. additionally, a .clang-format has
been committed with the hopes that any new changes past this commit will
be formatted with it

the commands for this change were

dos2unix <files that were using DOS endings>

fd -e c -e h -e cc -e cxx | ag -v CMSIS | \
    while read line; do \
        expand -t4 -i $line > $line.new; mv $line.new $line; \
    done
2021-06-28 15:22:13 -04:00
Triss d1df04a8a5 10-bit i2c addr support, better address probes 2021-06-21 00:07:42 +02:00
Triss df797cbeb4 i2c-tiny-usb works! 2021-06-20 23:58:26 +02:00
Triss 7017ad8b0d blargh 2021-06-18 00:21:15 +02:00
Triss b410792728 more debugging stuff (& fix non-stdiousbcdc mode), almost *actually* working this time 2021-06-17 23:52:07 +02:00
Triss 6cc617fe1f I2C properly works, finally 2021-06-17 15:45:59 +02:00
Triss 1cadae03df i2c actually working a bit more, but device scans/address probes are not 2021-06-15 03:25:46 +02:00
Triss 191c9025e8 untested but finished I2C-Tiny-USB impl 2021-06-14 03:37:32 +02:00