Skip to content

Commit e24951a

Browse files
committed
usbd: Add copyright notices (+delete file that has gone from upstream but wasn't removed in the merge)
1 parent 7472ef5 commit e24951a

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

micropython/usbd/hidkeypad.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Implement a keypad
1+
# MicroPython USB keypad module
2+
# MIT license; Copyright (c) 2023 Dave Wickham
23

34
from .hid import HIDInterface
45
from .keycodes import KEYPAD_KEYS_TO_KEYCODES

micropython/usbd/keycodes.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Keypad keycodes for use with USB HID
2+
# MIT license; Copyright (c) 2023 Dave Wickham
13
_KEYPAD_KEYS = [
24
"<NumLock>", "/", "*", "-", "+", "<Enter>", "1", "2", "3", "4", "5", "6",
35
"7", "8", "9", "0", "."

micropython/usbd/manifest.py

Lines changed: 0 additions & 9 deletions
This file was deleted.

micropython/usbd/msc.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# MicroPython USB mass storage/SCSI module
2+
# MIT license; Copyright (c) 2023 Dave Wickham
13
from .device import USBInterface
24

35
from .utils import (

0 commit comments

Comments
 (0)