gnokii-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Gnokii and Nokia 6680


From: Charles-Edouard Ruault
Subject: Gnokii and Nokia 6680
Date: Fri, 07 Oct 2005 17:24:35 +0200
User-agent: Debian Thunderbird 1.0.2 (X11/20050602)

Hi All,

i'm trying to make my 6680 recognized by gnokii.
I've read this thread
http://lists.gnu.org/archive/html/gnokii-users/2005-09/msg00018.html

I first tried with the duk2 cable, using the provided module ( BTW i had
to patch the module in order to make it recognize the 6680 and
load/unload correctly on kernel 2.6.13.3, the patch is attached to this
email ).
When i plugin the cable, i see that the phone is detected and the
drivers activates the endpoint :

Oct  7 17:05:25 kaluha kernel: usb 3-1: new full speed USB device using
ohci_hcd and address 4
Oct  7 17:05:25 kaluha kernel: Nokia DKU2: probe of 3-1:1.0 failed with
error -1
Oct  7 17:05:25 kaluha kernel: Nokia DKU2: probe of 3-1:1.1 failed with
error -1
Oct  7 17:05:25 kaluha kernel: Nokia DKU2: probe of 3-1:1.2 failed with
error -1
Oct  7 17:05:25 kaluha kernel: Nokia DKU2: probe of 3-1:1.3 failed with
error -1
Oct  7 17:05:25 kaluha kernel: Nokia DKU2: probe of 3-1:1.4 failed with
error -1
Oct  7 17:05:25 kaluha kernel: Nokia DKU2: probe of 3-1:1.5 failed with
error -1
Oct  7 17:05:25 kaluha kernel: Nokia DKU2: probe of 3-1:1.6 failed with
error -1
Oct  7 17:05:26 kaluha kernel: Nokia FBUS Port:
Oct  7 17:05:26 kaluha kernel: Nokia DKU2 3-1:1.7: Nokia
7600/6230/6230i/6170/6680 DKU2 driver converter detected
Oct  7 17:05:26 kaluha kernel: usb 3-1: Nokia 7600/6230/6230i/6170/6680
DKU2 driver converter now attached to ttyUSB0
Oct  7 17:05:26 kaluha kernel: cdc_acm 3-1:1.8: ttyACM0: USB ACM device


however when i try to use port ttyUSB0 i get
GSM/FBUS init failed!

Then in tried using these settings
connection = serial
model=AT
port=/dev/ttyACM0

I was able to identify the phone, but reading the phonebook returned
nothing :(

Then i read the README-Symbian and figured out that i was using a phone
without FBUS support ( correct ? ). Thus the reply above.
I decided to follow the instructions and to use gnapplet, i installed it
on the phone and was able to connect using bluetooth.
However, i only got signal & battery strengh info. Trying to read the
phonebook crashed gnapplet :(
Has anyone been successfull in making gnokii work with the 6680 ???

Thanks in advance.

-- 
Charles-Edouard Ruault
GPG key Id E4D2B80C
--- nokia_dku2.c.orig   2005-10-07 14:05:43.000000000 +0200
+++ nokia_dku2.c        2005-10-07 15:03:25.000000000 +0200
@@ -48,6 +48,7 @@
 #define NOKIA6230_PRODUCT_ID   0x040f
 #define NOKIA6170_PRODUCT_ID   0x0416
 #define NOKIA6230i_PRODUCT_ID  0x0428
+#define NOKIA6680_PRODUCT_ID   0x041e
 
 #define NOKIA_AT_PORT  0x82
 #define NOKIA_FBUS_PORT        0x86
@@ -60,6 +61,7 @@
        { USB_DEVICE(NOKIA_VENDOR_ID, NOKIA6230_PRODUCT_ID) },
        { USB_DEVICE(NOKIA_VENDOR_ID, NOKIA6170_PRODUCT_ID) },
        { USB_DEVICE(NOKIA_VENDOR_ID, NOKIA6230i_PRODUCT_ID) },
+       { USB_DEVICE(NOKIA_VENDOR_ID, NOKIA6680_PRODUCT_ID) },
        { }                     /* Terminating entry */
 };
 
@@ -75,7 +77,8 @@
 
 static struct usb_serial_device_type nokia_device = {
        .owner =                THIS_MODULE,
-       .name =                 "Nokia 7600/6230/6230i/6170 DKU2 driver",
+       .name =                 "Nokia 7600/6230/6230i/6170/6680 DKU2 driver",
+       .short_name =           "nokia_dku2",
        .id_table =             id_table,
        .num_interrupt_in =     1,
        .num_bulk_in =          1,
@@ -130,6 +133,7 @@
 
 static void __exit nokia_exit(void)
 {
+       usb_deregister (&nokia_driver);
        usb_serial_deregister(&nokia_device);
 }
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]