![]() |
#31 |
creator of calibre
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 45,271
Karma: 27111060
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
|
I dont know, I'm stumped, as far as I can tell calibre should be recognizing the reader, but it isn't.
Basically, all I can suggest is try to clean out all calibre related entries from your registry and your hardisk, then try a reboot/re-install. But, I think this is one of those cases where nothing short of a full windows re-install will fix it. |
![]() |
![]() |
![]() |
#32 | |
Literacy = Understanding
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 4,833
Karma: 59674358
Join Date: Dec 2007
Location: The World of Books
Device: Nook, Nook Tablet
|
Quote:
![]() |
|
![]() |
![]() |
Advert | |
|
![]() |
#33 |
Literacy = Understanding
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 4,833
Karma: 59674358
Join Date: Dec 2007
Location: The World of Books
Device: Nook, Nook Tablet
|
Thanks, Kovid, for all your time and help.
![]() |
![]() |
![]() |
![]() |
#34 | |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 19,832
Karma: 11844413
Join Date: Jan 2007
Location: Tampa, FL USA
Device: Kindle Touch
|
Quote:
BOb |
|
![]() |
![]() |
![]() |
#35 |
Literacy = Understanding
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 4,833
Karma: 59674358
Join Date: Dec 2007
Location: The World of Books
Device: Nook, Nook Tablet
|
Thanks, Bob. that's what I will do until the Reader gets recognized again.
|
![]() |
![]() |
Advert | |
|
![]() |
#36 | |
Literacy = Understanding
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 4,833
Karma: 59674358
Join Date: Dec 2007
Location: The World of Books
Device: Nook, Nook Tablet
|
Quote:
![]() Again, I appreciate all your help and time. ![]() |
|
![]() |
![]() |
![]() |
#37 |
creator of calibre
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 45,271
Karma: 27111060
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
|
I thought of another possible point of failure. Once again try running calibre-debug and at the green prompt:
Code:
import wmi from calibre.devices.prs505.driver import PRS505 c = wmi.WMI() for drive in c.Win32_DiskDrive(): print str(drive.PNPDeviceID) if PRS505.is_device(str(drive.PNPDeviceID)): print drive.Partitions if drive.Partitions == 0: continue partitions = drive.associators("Win32_DiskDriveToDiskPartition") print partitions |
![]() |
![]() |
![]() |
#38 |
Literacy = Understanding
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 4,833
Karma: 59674358
Join Date: Dec 2007
Location: The World of Books
Device: Nook, Nook Tablet
|
Kovid, I ran the code and the results are shown in the attachment below. I have installed version 0.4.68 of Calibre. After running the code, I opened Calibre; it now recognizes the Reader.
![]() I don't know what this code did, but whatever it did, I'm now back in business with Calibre. ![]() Sorry. I tried to give you more karma but I can't until I spread it around. System won't let me. ![]() Last edited by rhadin; 06-27-2008 at 01:48 PM. |
![]() |
![]() |
![]() |
#39 |
creator of calibre
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 45,271
Karma: 27111060
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
|
Glad it works now
![]() |
![]() |
![]() |
![]() |
#40 |
Junior Member
![]() Posts: 2
Karma: 10
Join Date: Jun 2008
Device: Sony PRS-505
|
Have the same symptoms and more details
Hi Kovid,
I'm using Calibre 0.4.73 and I have exactly the same symptoms. I have executed the same diagnostics commands as you previously gave, but I can give you more details. I'm using Calibre both on my personal laptops and at my office workstations, with Windows XP. On my personal laptops, I have the administrators permissions and Calibre just runs like a charm. At work, I have more restricted privileges, and Calibre don't recognize my Sony PRS505. However, Windows manage to mount my folders, I can access them. I noticed however a weird behaviour of Windows XP at work. I'm using only one memory card (the memory stick pro one), and the other memory card plug is empty. but windows keeps on mapping it to a hard drive letter. It might be a clue ? So, when I executed the diagnostics commands, I clearly saw that 3 drives are recognized, but I have only 2 drives (the internal memory, and the memory stick pro card). Maybe Calibre tries to access the 3rd drive and gets stuck ? |
![]() |
![]() |
![]() |
#41 |
creator of calibre
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 45,271
Karma: 27111060
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
|
Hmm, possibly. Try the following
Code:
import wmi, pythoncom pythoncom.CoInitialize() _wmi = wmi.WMI() from calibre.devices.scanner import DeviceScanner scanner = DeviceScanner(_wmi) scanner.scan() from calibre.devices import devices for d in devices(): if scanner.is_device_connected(d): dev = d(log_packets=options.log_packets) dev.open() print dev._main_prefix, dev._card_prefix |
![]() |
![]() |
![]() |
#42 | |
Junior Member
![]() Posts: 2
Karma: 10
Join Date: Jun 2008
Device: Sony PRS-505
|
I think "options" is not defined.
Here is the error message right after the line containing "options.log_packets" : Quote:
|
|
![]() |
![]() |
![]() |
#43 |
creator of calibre
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 45,271
Karma: 27111060
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
|
oops
Code:
import wmi, pythoncom pythoncom.CoInitialize() _wmi = wmi.WMI() from calibre.devices.scanner import DeviceScanner scanner = DeviceScanner(_wmi) scanner.scan() from calibre.devices import devices for d in devices(): if scanner.is_device_connected(d): dev = d() dev.open() print dev._main_prefix, dev._card_prefix |
![]() |
![]() |
![]() |
#44 |
Enthusiast
![]() Posts: 30
Karma: 10
Join Date: Jul 2007
Device: Sony Reader PRS-500, Kindle DXG
|
Same problem with PRS-500
Hi!
I have the same problem with my PRS-500... Calibre work ok at home... but at work, my computer don't recognize the Reader. The Reader software was ok. (Actually don't see the reader after uninstall the sony drivers) I executed all the debug code that I found on the thread... these are my results: Code:
In [1]: import wmi, pythoncom In [2]: pythoncom.CoInitialize() In [3]: _wmi = wmi.WMI() In [4]: In [5]: for c in _wmi.USBControllerDevice(): print c.Dependent.DeviceID.upper() ...: USB\ROOT_HUB\4&2600A89F&0 USB\ROOT_HUB\4&3B6FF112&0 USB\ROOT_HUB20\4&1087794A&0 USB\ROOT_HUB\4&10B2C51B&0 USB\ROOT_HUB\4&270D945D&0 USB\VID_054C&PID_029B\5&2C65B59D&0&1 USB\ROOT_HUB\4&2FB3158C&0 USB\ROOT_HUB20\4&27A8BD23&0 Code:
In [1]: import wmi, pythoncom In [2]: pythoncom.CoInitialize() In [3]: _wmi = wmi.WMI() In [4]: from calibre.devices.scanner import DeviceScanner In [5]: from calibre.devices import devices In [6]: ds = DeviceScanner(_wmi) In [7]: for d in devices(): print d, ds.is_device_connected(d) ...: <class 'calibre.devices.prs500.driver.PRS500'> False <class 'calibre.devices.prs505.driver.PRS505'> False <class 'calibre.devices.kindle.driver.KINDLE'> False Code:
In [1]: import wmi, pythoncom In [2]: pythoncom.CoInitialize() In [3]: _wmi = wmi.WMI() In [4]: from calibre.devices.scanner import DeviceScanner In [5]: from calibre.devices import devices In [6]: ds = DeviceScanner(_wmi) In [7]: ds.scan() In [8]: for d in devices(): print d, ds.is_device_connected(d) ...: <class 'calibre.devices.prs500.driver.PRS500'> True <class 'calibre.devices.prs505.driver.PRS505'> False <class 'calibre.devices.kindle.driver.KINDLE'> False Code:
In [1]: import wmi In [2]: from calibre.devices.prs505.driver import PRS505 In [3]: c = wmi.WMI() In [4]: for drive in c.Win32_DiskDrive(): ...: print str(drive.PNPDeviceID) ...: if PRS50.is_device(str(drive.PNPDeviceID)): ...: print drive.Partitions ...: if drive.Partitions == 0: continue ...: partitions = drive.associators("Win32_DiskDriveToDiskPartition") ...: print partitions ...: ...: IDE\DISKST3250824AS_____________________________3.AAH___\5&2C41AB5A&0&0.0.0 Code:
In [1]: import wmi, pythoncom In [2]: pythoncom.CoInitialize() In [3]: _wmi = wmi.WMI() In [4]: from calibre.devices.scanner import DeviceScanner In [5]: scanner = DeviceScanner(_wmi) In [6]: scanner.scan() In [7]: from calibre.devices import devices In [8]: for d in devices(): ...: if scanner.is_device_connected(d): ...: dev = d() ...: dev.open() ...: print dev._main_prefix, dev._card_prefix ...: ...: --------------------------------------------------------------------------- DeviceError Traceback (most recent call last) C:\Documents and Settings\gustavoc\<ipython console> in <module>() C:\Documents and Settings\gustavoc\calibre\devices\prs500\driver.pyo in open(self=<calibre.devices.prs500.driver.PRS500 object at 0x01CA1630>) DeviceError: Unable to find SONY Reader. Is it connected? In [9]: Thanks in advance! |
![]() |
![]() |
![]() |
#45 |
Connoisseur
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 79
Karma: 2896
Join Date: Nov 2007
Device: Rocket eBook, Gemstar, and Kindle 3
|
I have this problem too. (Look at us all come out of the woodwork!) Over the next couple of days I'm going to upgrade to the latest version and then run through the debugging steps here. It hasn't recognized my device since the pre-Calibre days.
|
![]() |
![]() |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Calibre doesn't recognize .pdb - what to do? | Isay | Calibre | 16 | 01-10-2011 09:12 PM |
calibre won't recognize my Droid | Carl314 | Calibre | 39 | 12-07-2010 09:28 PM |
Newbie Help - Calibre won't Recognize Reader | wargboysmalltimz | Calibre | 2 | 10-02-2010 01:38 PM |
Calibre does not recognize my Kindle | mrb712 | Calibre | 7 | 08-15-2010 05:11 PM |
Calibre won't recognize my Pocketbook | Joghurt | Calibre | 7 | 12-11-2009 01:43 PM |