Driver for Nook Tablet. Fixes #890918 (Nook Tablet support)

This commit is contained in:
Kovid Goyal 2011-11-16 08:09:48 +05:30
parent efdad01e01
commit 0a45faee12
2 changed files with 6 additions and 2 deletions

View File

@ -83,7 +83,7 @@ class NOOK(USBMS):
class NOOK_COLOR(NOOK):
description = _('Communicate with the Nook Color and TSR eBook readers.')
PRODUCT_ID = [0x002, 0x003]
PRODUCT_ID = [0x002, 0x003, 0x004]
BCD = [0x216]
WINDOWS_MAIN_MEM = WINDOWS_CARD_A_MEM = 'EBOOK_DISK'
@ -105,4 +105,3 @@ class NOOK_COLOR(NOOK):
return USBMS.create_upload_path(self, path, mdata, fname,
create_dirs=create_dirs)

View File

@ -111,6 +111,7 @@ class KindleFire(KindleDX):
name = 'Kindle Fire'
id = 'kindle_fire'
output_profile = 'kindle_fire'
supports_color = True
class Sony505(Device):
@ -184,6 +185,10 @@ class NookColor(Nook):
output_profile = 'nook_color'
supports_color = True
class NookTablet(NookColor):
id = 'nook_tablet'
name = 'Nook Tablet'
class CybookG3(Device):
name = 'Cybook Gen 3'