Add support for the Kindle DX

This commit is contained in:
Kovid Goyal 2009-06-11 16:09:45 -07:00
parent 8d1bcee8dd
commit d2eccc9647
2 changed files with 14 additions and 2 deletions

View File

@ -350,8 +350,7 @@ from calibre.devices.blackberry.driver import BLACKBERRY
from calibre.devices.cybookg3.driver import CYBOOKG3
from calibre.devices.eb600.driver import EB600
from calibre.devices.jetbook.driver import JETBOOK
from calibre.devices.kindle.driver import KINDLE
from calibre.devices.kindle.driver import KINDLE2
from calibre.devices.kindle.driver import KINDLE, KINDLE2, KINDLE_DX
from calibre.devices.prs500.driver import PRS500
from calibre.devices.prs505.driver import PRS505
from calibre.devices.prs700.driver import PRS700
@ -397,6 +396,7 @@ plugins += [
JETBOOK,
KINDLE,
KINDLE2,
KINDLE_DX,
PRS500,
PRS505,
PRS700,

View File

@ -72,3 +72,15 @@ class KINDLE2(KINDLE):
PRODUCT_ID = [0x0002]
BCD = [0x0100]
class KINDLE_DX(KINDLE):
name = 'Kindle DX Device Interface'
description = _('Communicate with the Kindle 2 eBook reader.')
author = _('John Schember')
supported_platforms = ['windows', 'osx', 'linux']
PRODUCT_ID = [0x0003]
BCD = [0x0100]