From 35008f833f5c0037f1a9896a22af029aebbbf7c4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 26 Oct 2010 16:46:57 -0600 Subject: [PATCH] Add driver for Nokia N900 --- src/calibre/devices/nokia/driver.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/calibre/devices/nokia/driver.py b/src/calibre/devices/nokia/driver.py index f378a656fb..ed10f849d0 100644 --- a/src/calibre/devices/nokia/driver.py +++ b/src/calibre/devices/nokia/driver.py @@ -36,15 +36,15 @@ class N770(USBMS): class N810(N770): name = 'Nokia 810 Device Interface' - gui_name = 'Nokia 810' - description = _('Communicate with the Nokia 810 internet tablet.') + gui_name = 'Nokia 810/900' + description = _('Communicate with the Nokia 810/900 internet tablet.') - PRODUCT_ID = [0x96] + PRODUCT_ID = [0x96, 0x1c7] BCD = [0x316] - WINDOWS_MAIN_MEM = 'N810' + WINDOWS_MAIN_MEM = ['N810', 'N900'] - MAIN_MEMORY_VOLUME_LABEL = 'N810 Main Memory' + MAIN_MEMORY_VOLUME_LABEL = 'Nokia Tablet Main Memory' class E71X(USBMS):