From 80bb4b71b0bf84e1e50b5f09d5c0536fc6bd4f38 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 6 Jun 2012 10:04:30 +0530 Subject: [PATCH] Driver for Trekstor Pyrus. Fixes #1008946 (Please include trekstore pyrus ebookreader) --- src/calibre/devices/misc.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/calibre/devices/misc.py b/src/calibre/devices/misc.py index 3f2108bb6c..2687517bb0 100644 --- a/src/calibre/devices/misc.py +++ b/src/calibre/devices/misc.py @@ -224,16 +224,16 @@ class TREKSTOR(USBMS): FORMATS = ['epub', 'txt', 'pdf'] VENDOR_ID = [0x1e68] - PRODUCT_ID = [0x0041, 0x0042, 0x0052, 0x004e, - 0x003e # This is for the EBOOK_PLAYER_5M https://bugs.launchpad.net/bugs/792091 + PRODUCT_ID = [0x0041, 0x0042, 0x0052, 0x004e, 0x0056, + 0x003e, # This is for the EBOOK_PLAYER_5M https://bugs.launchpad.net/bugs/792091 ] - BCD = [0x0002] + BCD = [0x0002, 0x100] EBOOK_DIR_MAIN = 'Ebooks' VENDOR_NAME = 'TREKSTOR' WINDOWS_MAIN_MEM = WINDOWS_CARD_A_MEM = ['EBOOK_PLAYER_7', - 'EBOOK_PLAYER_5M', 'EBOOK-READER_3.0'] + 'EBOOK_PLAYER_5M', 'EBOOK-READER_3.0', 'EREADER_PYRUS'] class EEEREADER(USBMS):