Fix #6428 (New ebook device: Teclast K5 - Debug Info.)

This commit is contained in:
Kovid Goyal 2010-08-13 11:50:18 -06:00
parent 369b26aa84
commit 02ddd0db87

View File

@ -6,9 +6,9 @@ from calibre.devices.usbms.driver import USBMS
class TECLAST_K3(USBMS): class TECLAST_K3(USBMS):
name = 'Teclast K3 Device Interface' name = 'Teclast K3/K5 Device Interface'
gui_name = 'K3' gui_name = 'K3/K5'
description = _('Communicate with the Teclast K3 reader.') description = _('Communicate with the Teclast K3/K5 reader.')
author = 'Kovid Goyal' author = 'Kovid Goyal'
supported_platforms = ['windows', 'osx', 'linux'] supported_platforms = ['windows', 'osx', 'linux']
@ -17,11 +17,10 @@ class TECLAST_K3(USBMS):
VENDOR_ID = [0x071b] VENDOR_ID = [0x071b]
PRODUCT_ID = [0x3203] PRODUCT_ID = [0x3203]
BCD = [0x0000] BCD = [0x0000, 0x0100]
VENDOR_NAME = 'TECLAST' VENDOR_NAME = 'TECLAST'
WINDOWS_MAIN_MEM = 'DIGITAL_PLAYER' WINDOWS_MAIN_MEM = WINDOWS_CARD_A_MEM = ['DIGITAL_PLAYER', 'TL-K5']
WINDOWS_CARD_A_MEM = 'DIGITAL_PLAYER'
MAIN_MEMORY_VOLUME_LABEL = 'K3 Main Memory' MAIN_MEMORY_VOLUME_LABEL = 'K3 Main Memory'
STORAGE_CARD_VOLUME_LABEL = 'K3 Storage Card' STORAGE_CARD_VOLUME_LABEL = 'K3 Storage Card'