diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-16 17:45:44 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-17 12:15:04 -0600 |
commit | d58be71b5bf640a117b301d74f4e82110a689561 (patch) | |
tree | 990a3af524df6fbf2c462ac426e9353bd6662135 /usb_common.c | |
parent | 82634b3b8eabcc966c5480c4a58b81dbcb49d022 (diff) |
copyright notices, coroutines
Diffstat (limited to 'usb_common.c')
-rw-r--r-- | usb_common.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usb_common.c b/usb_common.c index 9d59afe..65882b2 100644 --- a/usb_common.c +++ b/usb_common.c @@ -1,3 +1,9 @@ +/* usb_common.c - Common framework for implementing multiple USB devices at once + * + * Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com> + * SPDX-Licence-Identifier: AGPL-3.0-or-later + */ + #include <stdint.h> /* for uint{n}_t types */ #include <string.h> /* memcpy(newlib) */ #include <assert.h> /* for assert(newlib) */ |