mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 08:03:12 +02:00
Add the Nook HD+ id only for osx since it appears to be MTP capable
This commit is contained in:
parent
ea37f4e8a7
commit
1071194ce8
1 changed files with 4 additions and 3 deletions
|
|
@ -12,6 +12,7 @@
|
|||
|
||||
import cStringIO
|
||||
|
||||
from calibre.constants import isosx
|
||||
from calibre.devices.usbms.driver import USBMS
|
||||
|
||||
class NOOK(USBMS):
|
||||
|
|
@ -83,9 +84,9 @@ def sanitize_path_components(self, components):
|
|||
class NOOK_COLOR(NOOK):
|
||||
description = _('Communicate with the Nook Color, TSR and Tablet eBook readers.')
|
||||
|
||||
PRODUCT_ID = [0x002, 0x003, 0x004,
|
||||
# Nook HD+
|
||||
0x005]
|
||||
PRODUCT_ID = [0x002, 0x003, 0x004]
|
||||
if isosx:
|
||||
PRODUCT_ID.append(0x005) # Nook HD+
|
||||
BCD = [0x216]
|
||||
|
||||
WINDOWS_MAIN_MEM = WINDOWS_CARD_A_MEM = ['EBOOK_DISK', 'NOOK_TABLET',
|
||||
|
|
|
|||
Loading…
Reference in a new issue