From b27799a31c1d78f500ed7aaaac320f5c344e71fd Mon Sep 17 00:00:00 2001 From: Michael Wiebusch Date: Thu, 11 Dec 2014 17:49:47 +0100 Subject: [PATCH] previous 2 commits did not work, because interrupt headers were not included in the touchpad module, this is fixed now. Also Product String was changed to Coral Scanner Table ... for custom udev rules --- firmware/Descriptors.c | 4 ++-- firmware/TM1001A.h | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/firmware/Descriptors.c b/firmware/Descriptors.c index 765b281..0e76d82 100644 --- a/firmware/Descriptors.c +++ b/firmware/Descriptors.c @@ -194,7 +194,7 @@ const USB_Descriptor_String_t PROGMEM ManufacturerString = { .Header = {.Size = USB_STRING_LEN(11), .Type = DTYPE_String}, - .UnicodeString = L"Dean Camera" + .UnicodeString = L"M. Wiebusch" }; /** Product descriptor string. This is a Unicode string containing the product's details in human readable form, @@ -205,7 +205,7 @@ const USB_Descriptor_String_t PROGMEM ProductString = { .Header = {.Size = USB_STRING_LEN(22), .Type = DTYPE_String}, - .UnicodeString = L"LUFA USB-RS232 Adapter" + .UnicodeString = L"Coral Scanner Table" }; /** This function is called by the library when in device mode, and must be overridden (see library "USB Descriptors" diff --git a/firmware/TM1001A.h b/firmware/TM1001A.h index ba5de09..39e7448 100644 --- a/firmware/TM1001A.h +++ b/firmware/TM1001A.h @@ -12,6 +12,7 @@ // acidbourbon.wordpress.com // June 2013 +#include // define here the port and the pin where you cave connected // the ADB (I/O) line from your TM1001A touchpad -- 2.43.0