This commit is contained in:
Shiz 2020-04-10 18:59:25 +02:00
commit 3bd8e7246f
5 changed files with 15 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.o
/bin
/obj

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "ext/tinyusb"]
path = ext/tinyusb
url = https://github.com/hathach/tinyusb

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# nonsenselock
Senselock EliteIV emulation software.

1
ext/tinyusb Submodule

@ -0,0 +1 @@
Subproject commit 2ff3f765db7e62201d0491093111b0d649446046

5
src/usb/usb.h Normal file
View File

@ -0,0 +1,5 @@
#define NSL_USB_VID 0x471 /* NXP */
#define NSL_USB_PID 0x485E /* Senselock EliteIV */
#define NSL_USB_VENDOR_STRING "Senselock"
#define NSL_USB_PRODUCT_STRING "Elite4 2.x"
#define NSL_USB_GUID { 0xF7, 0x38, 0x16, 0x17, 0xAD, 0x1E, 0x73, 0x48, 0xBA, 0x98, 0xC9, 0x66, 0xAB, 0xCF, 0x01, 0x42 }