[feat] add usb audio and video driver

This commit is contained in:
jzlv 2021-06-04 17:51:38 +08:00
parent 5cca7f0193
commit 4115724dc7
11 changed files with 352 additions and 221 deletions

View file

@ -70,7 +70,7 @@
#define BCD(x) ((((x) / 10) << 4) | ((x) % 10))
#define BIT(n) (1UL << (n))
#define BIT(x) (1<<(x))
#define ARRAY_SIZE(array) \
((int)((sizeof(array) / sizeof((array)[0]))))