Stefan Arndt wrote:
> Hi,
> 
>  
> thanks a lot for the answer.
> 
> I did delete the serial number.

Ohhh. OK, well that makes me feel better.

> bNumEndpoints 2
> address 81 attrib 03 max_length 64
> address 02 attrib 03 max_length 64
> Requesting Identity: 100%                 done
> Failed to read from device: -110 (could not detach kernel driver from 
> interface 0: No data available)
> Failed to prepare remote for FW update
> Failed to upload firmware: Unknown error
> Failed with error 1

OK, can you applied the attached patch and recompile and try again and send
the output?

Thanks!

-- 
Phil Dibowitz                             [EMAIL PROTECTED]
Open Source software and tech docs        Insanity Palace of Metallica
http://www.phildev.net/                   http://www.ipom.com/

"Never write it in C if you can do it in 'awk';
 Never do it in 'awk' if 'sed' can handle it;
 Never use 'sed' when 'tr' can do the job;
 Never invoke 'tr' when 'cat' is sufficient;
 Avoid using 'cat' whenever possible" -- Taylor's Laws of Programming

? libconcord/.libconcord.cpp.swp
Index: libconcord/libconcord.cpp
===================================================================
RCS file: /cvsroot/concordance/concordance/libconcord/libconcord.cpp,v
retrieving revision 1.15
diff -u -r1.15 libconcord.cpp
--- libconcord/libconcord.cpp	30 Mar 2008 10:01:46 -0000	1.15
+++ libconcord/libconcord.cpp	30 Mar 2008 20:47:57 -0000
@@ -870,9 +870,14 @@
 		 *    restart config
 		 *    write "1" to flash addr 200000
 		 */
-		if ((err = rmt->RestartConfig()))
-			return LC_ERROR;
+#ifdef _DEBUG
+		printf("DEBUG: Restart config");
+#endif
+		rmt->RestartConfig();
 		data[0] = 0x01;
+#ifdef _DEBUG
+		printf("DEBUG: WriteFlash");
+#endif
 		if ((err = rmt->WriteFlash(200000, 1, data, ri.protocol, NULL,
 				NULL)))
 			return LC_ERROR;

Attachment: signature.asc
Description: OpenPGP digital signature

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
concordance-devel mailing list
concordance-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/concordance-devel

Reply via email to