News aggregator

User:DaveByrnesHorseRacing

gnokii wiki - Sat, 2010-03-06 17:47

New user account

New page

DaveByrnesHorseRacing
Categories: gnokii

Bug report

gnokii wiki - Thu, 2010-03-04 15:31

fix formatting

← Older revision Revision as of 14:31, 4 March 2010 (One intermediate revision not shown)Line 10: Line 10:      debug = on      debug = on and attach gzipped output to the email: and attach gzipped output to the email: -     (x)gnokii(d) [parameters] 2>errfile+     LC_MESSAGES=en_US.UTF8 (x)gnokii(d) [parameters] 2>errfile  +(with <code>LC_MESSAGE=en_US.UTF8</code> the program putput and the error messages will be in English)  +  It would be good if you name the problem in the subject if possible and It would be good if you name the problem in the subject if possible and name if it meets [[gnokii]], [[xgnokii]] or [[gnokiid]] binaries or gnokii as a whole. name if it meets [[gnokii]], [[xgnokii]] or [[gnokiid]] binaries or gnokii as a whole. * if you get a SEGFAULT, a backtrace is needed (refer to [[segfault]]). * if you get a SEGFAULT, a backtrace is needed (refer to [[segfault]]). -* if you get encoding errors always use the git version and do your tests also with the [[fake driver]]+* if you get encoding errors always use the git version and if you are using a Nokia do your tests also with the [[fake driver]] Send resulting report to gnokii-users (at) nongnu.org Send resulting report to gnokii-users (at) nongnu.org Dforsi
Categories: gnokii

Bug report

gnokii wiki - Thu, 2010-03-04 15:27

Suggest using LC_MESSAGE=en_US.UTF8

← Older revision Revision as of 14:27, 4 March 2010 Line 10: Line 10:      debug = on      debug = on and attach gzipped output to the email: and attach gzipped output to the email: -     (x)gnokii(d) [parameters] 2>errfile+     LC_MESSAGES=en_US.UTF8 (x)gnokii(d) [parameters] 2>errfile  +(with <code>LC_MESSAGE=en_US.UTF8</code> the program putput and the error messages will be in English) It would be good if you name the problem in the subject if possible and It would be good if you name the problem in the subject if possible and name if it meets [[gnokii]], [[xgnokii]] or [[gnokiid]] binaries or gnokii as a whole. name if it meets [[gnokii]], [[xgnokii]] or [[gnokiid]] binaries or gnokii as a whole. * if you get a SEGFAULT, a backtrace is needed (refer to [[segfault]]). * if you get a SEGFAULT, a backtrace is needed (refer to [[segfault]]). -* if you get encoding errors always use the git version and do your tests also with the [[fake driver]]+* if you get encoding errors always use the git version and if you are using a Nokia do your tests also with the [[fake driver]] Send resulting report to gnokii-users (at) nongnu.org Send resulting report to gnokii-users (at) nongnu.org Dforsi
Categories: gnokii

User:Agroni

gnokii wiki - Thu, 2010-02-25 23:27

New user account

New page

Agroni
Categories: gnokii

AT driver

gnokii wiki - Thu, 2010-02-25 11:39

Redirected page to Atgen driver

New page

#redirect [[Atgen driver]] Dforsi
Categories: gnokii

Fake driver

gnokii wiki - Thu, 2010-02-25 11:37

The '''fake driver''' is a tool used for testing

New page

The '''fake driver''' is a tool used for testing.
It duplicates some functionality of the [[atgen driver|AT driver]] but prints commands to stdout instead of sending them to a phone.

Only a subset of libgnokii commands is currently implemented in the fake driver.

=== Configuration ===

{{Config|
|description=fake driver, used for testing
|port=ignored
|model=fake
|connection=serial # any valid connection type will work
}}

=== Basic usage ===

<pre>
$ echo "This is a test" | gnokii --sendsms 1234
AT+CMGS=23
001100048121430000000E54747A0E4ACF416110BD3CA703^Z
</pre>

=== Advanced usage ===

Since gnokii 0.6.29 the fake driver on non-Windows systems handles the <code>sms_inbox</code> parameter to test reading SMS.

Add this to you configuration:
<pre>
[fake_driver]
sms_inbox = /tmp/sms
</pre>
Then create the <code>/tmp/sms</code> directory with some files containing valid PDUs in HEX format, as printed by <code>--sendsms</code> or by <code>--getsms</code> when using the [[AT driver]]; file names are ignored, only the order as seen by <code>readdir()</code> is important.

For more examples see the tests in the <code>[http://git.savannah.gnu.org/cgit/gnokii.git/tree/testsuite testsuite]</code> directory which are done using the fake driver. Dforsi
Categories: gnokii

Bug report

gnokii wiki - Thu, 2010-02-25 10:54

Mention the fake driver; other small changes

← Older revision Revision as of 09:54, 25 February 2010 Line 3: Line 3: When you report a problems please attach the following information: When you report a problems please attach the following information: -* phone model+* phone model and how do you connect (Bluetooth/IrDa/cable with its type) -* connection type (Bluetooth/IrDa/cable with its type)+* the values of the configuration parameters <code>model</code>, <code>connection</code> and <code>port</code> * gnokii version (<code>gnokii --version</code>) along with source for it: git, tarball, binary package * gnokii version (<code>gnokii --version</code>) along with source for it: git, tarball, binary package -* edit you <code>gnokiirc</code> and enable debugging, e.g.:+* edit your <code>gnokiirc</code> and enable debugging, e.g.:      [logging]      [logging]      debug = on      debug = on and attach gzipped output to the email: and attach gzipped output to the email:      (x)gnokii(d) [parameters] 2>errfile      (x)gnokii(d) [parameters] 2>errfile -* if you get a SEGFAULT, a backtrace is needed (refer to [[segfault]]).  -  It would be good if you name the problem in the subject if possible and It would be good if you name the problem in the subject if possible and name if it meets [[gnokii]], [[xgnokii]] or [[gnokiid]] binaries or gnokii as a whole. name if it meets [[gnokii]], [[xgnokii]] or [[gnokiid]] binaries or gnokii as a whole. - +* if you get a SEGFAULT, a backtrace is needed (refer to [[segfault]]). -(from Pawel Kot's mailing to gnokii mailing list).+* if you get encoding errors always use the git version and do your tests also with the [[fake driver]] Send resulting report to gnokii-users (at) nongnu.org Send resulting report to gnokii-users (at) nongnu.org -If you want to debug yourself, by default the CVS version adds -g to CFLAGS+If you want to debug yourself, by default the git version adds -g to CFLAGS -when generating Makefile.global and the defines needed to print debug+when generating makefiles and the defines needed to print debug messages when generating <code>include/config.h</code> then in your <code>gnokiirc</code> set <code>debug=on</code> messages when generating <code>include/config.h</code> then in your <code>gnokiirc</code> set <code>debug=on</code> to see messages about libgnokii or gnokii and <code>xdebug=on</code> to see messages to see messages about libgnokii or gnokii and <code>xdebug=on</code> to see messages Dforsi
Categories: gnokii

Nokia6300Config

gnokii wiki - Sat, 2010-02-20 22:10

← Older revision Revision as of 21:10, 20 February 2010 Line 3: Line 3: |port=aa:bb:cc:dd:ee:ff |port=aa:bb:cc:dd:ee:ff |model=6510 |model=6510 -|connection=bluetooth+|connection=bluetooth (for USB you may try [[Nokia6303Config|Nokia 6303]]) }} }} Avalon
Categories: gnokii

Nokia6303Config

gnokii wiki - Sat, 2010-02-20 22:06

New page

<pre>Manufacturer : Nokia
Model : RM-443
Product name : RM-443
Revision : V 09.10
</pre>

Configuration:
<pre>model = 6510
port = 1
connection = dku2libusb</pre>

Using stock USB cable:
<pre>--getphonebook SM 1 end - works nice
--getsms IN 1 end - works nice
--sendsms <phonum - works nice
--deletesms IN 1 - worked nice
--deletephonebook SM - works fine

--writephonebook - I couldn't make that work:
Write FAILED (Command timed out.): memory type: SM, loc: 56, name: test, number: 88</pre>

----

Some functionality (tested only reading phonebook) also works with:
<pre>model AT and device /dev/ttyACM0, connection = serial</pre>

Keep watch on what mode the phone is set to. It should ask you when you connect it to the PC. For example setting it to storage mode, you wont be able to work with it with gnokii

----
Look also at [[Nokia6300Config|Nokia 6300]] for bluetooth. I haven't tried on 6303 but it seems very likely to work as good as the 6300.

----
Look at this [http://lists.gnu.org/archive/html/gnokii-users/2010-01/msg00014.html thread] in case I have missed something. Avalon
Categories: gnokii

Config

gnokii wiki - Sat, 2010-02-20 21:53

From Nokia:

← Older revision Revision as of 20:53, 20 February 2010 Line 76: Line 76: * [[Nokia6280Config|Nokia 6280]] * [[Nokia6280Config|Nokia 6280]] * [[Nokia6300Config|Nokia 6300]] * [[Nokia6300Config|Nokia 6300]]  +* [[Nokia6303Config|Nokia 6303]] * [[Nokia6310Config|Nokia 6310]] * [[Nokia6310Config|Nokia 6310]] * [[Nokia6310iConfig|Nokia 6310i]] * [[Nokia6310iConfig|Nokia 6310i]] Avalon
Categories: gnokii

User:Dermatologistsrecommendedfacialmoisturizer959

gnokii wiki - Tue, 2010-02-16 13:37

New user account

New page

Dermatologistsrecommendedfacialmoisturizer959
Categories: gnokii

Bug report

gnokii wiki - Thu, 2010-02-11 18:04

s/cvs/git/

← Older revision Revision as of 17:04, 11 February 2010 Line 1: Line 1: Before reporting a problem with gnokii make sure that the problem still exists Before reporting a problem with gnokii make sure that the problem still exists -with current [http://www.gnokii.org/cvs.shtml CVS version].+with [http://www.gnokii.org/git.shtml current version]. When you report a problems please attach the following information: When you report a problems please attach the following information: * phone model * phone model * connection type (Bluetooth/IrDa/cable with its type) * connection type (Bluetooth/IrDa/cable with its type) -* gnokii version (<code>gnokii --version</code>) along with source for it: cvs, tarball, binary package+* gnokii version (<code>gnokii --version</code>) along with source for it: git, tarball, binary package * edit you <code>gnokiirc</code> and enable debugging, e.g.: * edit you <code>gnokiirc</code> and enable debugging, e.g.:      [logging]      [logging] Dforsi
Categories: gnokii

User:Scosty

gnokii wiki - Mon, 2010-02-08 21:51

New user account

New page

Scosty
Categories: gnokii

User:Newacct

gnokii wiki - Sat, 2010-02-06 02:18

New user account

New page

Newacct
Categories: gnokii

User:Avalon

gnokii wiki - Wed, 2010-02-03 13:00

changed group membership for User:Avalon from (none) to gnokii

New page

Pkot
Categories: gnokii

Config

gnokii wiki - Wed, 2010-02-03 12:32

Provide link for the Nokia device matrix

← Older revision Revision as of 11:32, 3 February 2010 (One intermediate revision not shown)Line 14: Line 14: If you have a fairly modern phone you should use the following model setting in your config file: If you have a fairly modern phone you should use the following model setting in your config file: -* <code>[[nk6510 driver|model = series40]]</code>, if you have Nokia non-Symbian Series60 phone,+* <code>[[nk6510 driver|model = series40]]</code>, if you have Nokia non-Symbian phone (see [http://www.forum.nokia.com/devices/matrix_all_1.html device matrix] for the reference), -* <code>[[gnapplet driver|model = gnapplet]]</code>, if you have Nokia Symbian Series60 prior to 3rd Edition phone,+* <code>[[gnapplet driver|model = gnapplet]]</code>, if you have Nokia Symbian Series60 prior to 3rd Edition phone (see [http://www.forum.nokia.com/devices/matrix_all_1.html device matrix] for the reference), * <code>[[atgen driver|model = AT]]</code>, for all other. * <code>[[atgen driver|model = AT]]</code>, for all other. Pkot
Categories: gnokii

Atgen driver

gnokii wiki - Wed, 2010-02-03 12:29

Update links to point to git archive

← Older revision Revision as of 11:29, 3 February 2010 Line 32: Line 32: == Additional information == == Additional information == This driver has specific code for quirks of: This driver has specific code for quirks of: -* Bosch in [http://cvs.savannah.gnu.org/viewvc/gnokii/common/phones/atbosch.c?root=gnokii&view=log common/phones/atbosch.c]+* Bosch in [http://git.savannah.gnu.org/cgit/gnokii.git/tree/common/phones/atbosch.c common/phones/atbosch.c] -* Ericsson in [http://cvs.savannah.gnu.org/viewvc/gnokii/common/phones/ateric.c?root=gnokii&view=log common/phones/ateric.c]+* Ericsson in [http://git.savannah.gnu.org/cgit/gnokii.git/tree/common/phones/ateric.c common/phones/ateric.c] -* Nokia in [http://cvs.savannah.gnu.org/viewvc/gnokii/common/phones/atnok.c?root=gnokii&view=log common/phones/atnok.c]+* Nokia in [http://git.savannah.gnu.org/cgit/gnokii.git/tree/common/phones/atnok.c common/phones/atnok.c] -* Samsung in [http://cvs.savannah.gnu.org/viewvc/gnokii/common/phones/atsam.c?root=gnokii&view=log common/phones/atsam.c]+* Samsung in [http://git.savannah.gnu.org/cgit/gnokii.git/tree/common/phones/atsam.c common/phones/atsam.c] -* Siemens in [http://cvs.savannah.gnu.org/viewvc/gnokii/common/phones/atsie.c?root=gnokii&view=log common/phones/atsie.c]+* Siemens in [http://git.savannah.gnu.org/cgit/gnokii.git/tree/common/phones/atsie.c common/phones/atsie.c] -* Sony-Ericsson in [http://cvs.savannah.gnu.org/viewvc/gnokii/common/phones/atsoer.c?root=gnokii&view=log common/phones/atsoer.c]+* Sony-Ericsson in [http://git.savannah.gnu.org/cgit/gnokii.git/tree/common/phones/atsoer.c common/phones/atsoer.c] -* Motorola in [http://cvs.savannah.gnu.org/viewvc/gnokii/common/phones/atmot.c?root=gnokii&view=log common/phones/atmot.c]+* Motorola in [http://git.savannah.gnu.org/cgit/gnokii.git/tree/common/phones/atmot.c common/phones/atmot.c] Standard specs for this protocol are found in: Standard specs for this protocol are found in: * ETSI TS 100 916, formerly 3GPP TS 07.07, for most commands except SMS and CB * ETSI TS 100 916, formerly 3GPP TS 07.07, for most commands except SMS and CB * ETSI TS 100 585, formerly GSM 07.05, for Short Message Service and Cell Broadcast Service * ETSI TS 100 585, formerly GSM 07.05, for Short Message Service and Cell Broadcast Service They are freely downloadable in PDF format from the [http://webapp.etsi.org/key/queryform.asp ETSI website] (registration by email required). They are freely downloadable in PDF format from the [http://webapp.etsi.org/key/queryform.asp ETSI website] (registration by email required). Pkot
Categories: gnokii

Cables

gnokii wiki - Sat, 2010-01-16 17:39

DKU-2, CA-53 and CA-70: add wikilink to DKU2 page

← Older revision Revision as of 16:39, 16 January 2010 Line 46: Line 46: == DKU-2, CA-53 and CA-70 == == DKU-2, CA-53 and CA-70 == -DKU-2 cables are not seen by libusb unless there's a phone attached. I'm not an USB expert but that probably means that all communication, transformation logic is done by the phone, the cable is the silly transmitter (ie. the cable is not usb-to-serial converter).+[[DKU2|DKU-2]] cables are not seen by libusb unless there's a phone attached. I'm not an USB expert but that probably means that all communication, transformation logic is done by the phone, the cable is the silly transmitter (ie. the cable is not usb-to-serial converter). CA-53 cable is a replacement for DKU-2. CA-70 is even newer replacement which adds to the CA-53 a connector to charge the phone drawing power from the USB port. CA-53 cable is a replacement for DKU-2. CA-70 is even newer replacement which adds to the CA-53 a connector to charge the phone drawing power from the USB port. Dforsi
Categories: gnokii

User:JimJones

gnokii wiki - Fri, 2010-01-15 17:21

New user account

New page

JimJones
Categories: gnokii

User:Viper

gnokii wiki - Wed, 2010-01-06 14:22

New user account

New page

Viper
Categories: gnokii
Syndicate content