Driver for the Irex DR 800

This commit is contained in:
Kovid Goyal 2010-02-08 15:09:06 -07:00
parent 8700214dc6
commit 783ac99175
2 changed files with 12 additions and 1 deletions

View File

@ -407,7 +407,7 @@ from calibre.devices.eb600.driver import EB600, COOL_ER, SHINEBOOK, \
POCKETBOOK360, GER2, ITALICA, ECLICTO, DBOOK, INVESBOOK, \
BOOQ
from calibre.devices.iliad.driver import ILIAD
from calibre.devices.irexdr.driver import IREXDR1000
from calibre.devices.irexdr.driver import IREXDR1000, IREXDR800
from calibre.devices.jetbook.driver import JETBOOK
from calibre.devices.kindle.driver import KINDLE, KINDLE2, KINDLE_DX
from calibre.devices.nook.driver import NOOK
@ -465,6 +465,7 @@ plugins += [
CYBOOK,
ILIAD,
IREXDR1000,
IREXDR800,
JETBOOK,
SHINEBOOK,
POCKETBOOK360,

View File

@ -36,3 +36,13 @@ class IREXDR1000(USBMS):
EBOOK_DIR_MAIN = 'ebooks'
DELETE_EXTS = ['.mbp']
SUPPORTS_SUB_DIRS = True
class IREXDR800(IREXDR1000):
name = 'IRex Digital Reader 800 Device Interface'
description = _('Communicate with the IRex Digital Reader 800 eBook ' \
'reader.')
PRODUCT_ID = [0x002]
WINDOWS_MAIN_MEM = 'DR800'
EBOOK_DIR_MAIN = 'Books'