Commit Graph

12 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 df797cbeb4 i2c-tiny-usb works! 2021-06-20 23:58:26 +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 191c9025e8 untested but finished I2C-Tiny-USB impl 2021-06-14 03:37:32 +02:00
Triss b5e29c1dd7 move things around a bit 2021-06-14 02:01:35 +02:00
Triss 4c93827bed make whitespace & indentation etc. consistent, make usb descriptors a bit nicer 2021-06-14 01:32:21 +02:00
Triss 144b351d74 definitely not functuonal but hey its something 2021-06-06 05:10:36 +02:00
Peter Lawrence 270c127bca added CDC UART to RP2040 (Pico) 2021-02-25 17:45:13 -06:00
Peter Lawrence 5af4402cd1 added product string prefix to better distinguish variants 2021-02-15 20:28:22 -06:00
Peter Lawrence 26039d84c7 added rp2040 unique id (requires submodule update) 2021-02-15 20:19:13 -06:00
Peter Lawrence 7f1af42e27 added optional unique id 2021-02-15 17:51:48 -06:00
Peter Lawrence 2675203a9c stm32f072disco BSP added 2021-02-05 11:04:42 -06:00