forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
806014a
commit 0a2a27e
Showing
5 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
Submodule chibios
updated
5467 files
Submodule chibios-contrib
updated
898 files
Submodule printf
updated
20 files
+47 −0 | .github/workflows/build_and_test.yml | |
+99 −0 | .gitignore | |
+0 −63 | .travis.yml | |
+174 −0 | CMakeLists.txt | |
+1 −0 | LICENSE | |
+0 −271 | Makefile | |
+275 −212 | README.md | |
+0 −2 | codecov.yml | |
+0 −914 | printf.c | |
+0 −117 | printf.h | |
+19 −0 | printf_config.h.in | |
+1,421 −0 | src/printf/printf.c | |
+206 −0 | src/printf/printf.h | |
+112 −0 | test/CMakeLists.txt | |
+52 −0 | test/aliasing.c | |
+608 −0 | test/autotest.cpp | |
+4,511 −1,508 | test/catch.hpp | |
+653 −0 | test/getopt.h | |
+427 −1,513 | test/test_suite.cpp | |
+1,063 −0 | test/test_suite_main_testcases.hpp |
Submodule vusb
updated
12 files
+22 −16 | examples/custom-class/commandline/set-led.c | |
+22 −13 | examples/drivertest/commandline/runtest.c | |
+5 −5 | examples/hid-data/commandline/Makefile | |
+2 −2 | examples/hid-data/commandline/Makefile.windows | |
+4 −4 | examples/usbtool/Makefile | |
+2 −2 | examples/usbtool/Makefile.windows | |
+21 −18 | examples/usbtool/usbtool.c | |
+77 −56 | libs-host/hiddata.c | |
+88 −73 | libs-host/opendevice.c | |
+5 −5 | libs-host/opendevice.h | |
+1 −1 | usbdrv/usbdrvasm15.inc | |
+1 −1 | usbdrv/usbdrvasm20.inc |