Re: V3m does not transfer SMS
"Jim" <[email protected]> Fri, 23 Aug 2013 19:41:46 -0400
| Newsgroups | gmane.comp.mobile.bitpim.user |
|---|---|
| Message-ID | <[email protected]> |
This is a multi-part message in MIME format.
--===============0576710152218259479==
Content-Type: multipart/alternative;
boundary="----=_NextPart_000_008A_01CEA038.CD708840"
This is a multi-part message in MIME format.
------=_NextPart_000_008A_01CEA038.CD708840
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable
Jon,
Don=92t hold your breath. Frankly, if *anyone* from the development =
list had talked to me about anything 5 years ago I might have installed =
the platform and fixed it. I should have. In the end I spent more time =
asking for help than it would have taken to fix it.
I found my notes from back then (8/24/2008). I just checked and I see =
that the code has not changed. Here=92s what I found back then... =
basically, once you hit 1,000 messages, an index gets set back to 0 and =
you get nothing, because this happens before you get any output. The =
index becomes a corrupt value. I would have changed the 999 to 2000 and =
also at least put some kind of warning when the limit is reached.
And I don=92t remember if I had overwrite set. I don=92t recall that in =
the logs, but I don=92t see how that would stop this problem. At first =
glance, 500 should not have caused a problem, but perhaps you aren=92t =
counting the way the program does, because I don=92t remember exactly =
what would count as an SMSEntry. Every message anywhere is my guess.
I have no idea if anyone has the development platform running anymore. =
I see little traffic for bitpim anymore. Maybe you will have better =
luck than me finding someone who has it installed and who will take the =
5 minutes it takes to follow my code and make a =93Bitpim2000index=94 =
build version and send it for test.
See below:
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D
https://bitpim.svn.sourceforge.net/svnroot/bitpim/trunk/bitpim/src/sms.py=
class SMSEntry(object):
...
_id_index=3D0
_max_id_index=3D999
...
def _create_id(self):
"Create a BitPim serial for this entry"
self._data.setdefault("serials", []).append(\
{"sourcetype": "bitpim",
"id": '%.3f%03d'%(time.time(), SMSEntry._id_index) })
if SMSEntry._id_index<SMSEntry._max_id_index:
SMSEntry._id_index+=3D1
else:
SMSEntry._id_index=3D0
...
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D
From: Jon Zadra=20
Sent: Friday, August 23, 2013 6:33 PM
To: [email protected]=20
Subject: Re: [BitPim-user] V3m does not transfer SMS
Thanks Jim.=20
Yes, I think I have a little over 500 messages, so if there is an upper =
limit that may be my problem too. I had assumed the 'Overwrite' in the =
log referred ot my choice to replace, rather than add to, the existing =
SMS messages if any were stored in BitPim. I will take a look next time =
I get a chance and see if the other selection changes that log message.
Unless you ended up with a solution, don't worry about going through =
your notes. I'll wait and see if I get a response from anyone else. If =
it's anything useful, I'll pass it along.
Thanks again,
Jon
On Fri, Aug 23, 2013 at 6:25 PM, Jim <[email protected]> wrote:
Hi,
I used a Motorola Razr on Verizon from probably about fall of 2007 for =
at least a couple of years. I tried to use Bitpim to pull the SMS =
messages and had some of the same problems you describe now.
At the time, I looked at the code and posted to the user group and =
developer group and no one was responsive at all. I believe this was in =
the summer of 2008, but maybe 2009.
Let me ask this... do you have a lot of messages? I did.
Notice the line in your log:
14:34:01.805 {'sms': 'OVERWRITE'}
When I looked at the code back then, I found a loop which was used to =
read the messages was not set high enough for the number of messages I =
had stored. The loop had no warning when it was reaching the limit. =
>From what I could tell, the program would simply crash when it reached =
the end of the loop, before it processed the messages. I could never =
determine why there was no comment about the upper limit of the loop. =
Possibly, there was a memory issue if it was set higher, or, a develop =
just figured it was good enough... maybe higher than what the phones =
would store at the time the code was written. Most phones don=92t keep =
more than 1,000 messages, but as I recall, the Razr could keep a lot =
more than that. I don=92t recall even getting the message you got, so =
maybe someone tinkered with it since then.
If you search my postings, other than frustration, you will see where =
I posted the suspicious line of code and the module it came from. As I =
remember, I put out a request that anyone running the platform change =
one number in the code and see if it would compile, and I offered to =
test it, since at the time, I didn=92t feel like setting up the entire =
development platform. It seemed like a simple request. I debugged it, =
let someone else compile.
No one ever responded.
I would still be willing to test a custom version of Bitpim to see if =
it fixes the problem, as long as I know it comes from a developer. I =
won=92t hold my breath.
I=92ll dig through notes if you wish to pursue this.
take care,
Jim
From: Jon Zadra=20
Sent: Friday, August 23, 2013 2:38 PM
To: [email protected]=20
Subject: [BitPim-user] V3m does not transfer SMS
Hello,=20
I have a Motorola V3m (sprint). I am trying to pull all the SMS =
messages off of it.=20
It does not auto-detect, but I manually set it to the V3m (sprint) =
phone on COM4. I am able to successfully get the phone book with these =
settings, and although it will briefly display the status of SMS in the =
status bar current task, no SMS messages are transferred. There is no =
error.
I have tried using COM3 (unable to communicate error), and also tried =
other similar phone settings (V3mM, V3cm, etc).
Info:
BitPim Ver 1.0.7
OS: Windows 7 x64
Using USB cable
Phone info (retrieved by BitPim):=20
Model: Motorola V3m-Sprint Phone
Firmware Version: 24.2_00.37.0S3,2032
Below is the log file excerpt of an attempted SMS transfer:
14:33:36.296 COM4: USB support is not available
14:33:36.296 COM4: Opening port COM4, 115200 baud, timeout 3.000000, =
hardwareflow 0, softwareflow 0
14:33:36.302 COM4: Open of comm port suceeded
14:33:36.303 Moto-V3m: Getting Phone Info
14:33:36.308 Moto-V3m: Switching to modem
14:33:36.322 Moto-V3m: Now in modem mode
14:33:36.342 Moto-V3m: Switching from modem to phonebook
14:33:39.427 Moto-V3m: Now in phonebook mode
14:33:39.450 Moto-V3m: Switching from phonebook to modem
14:33:39.575 Moto-V3m: Now in modem mode
14:33:53.450 Moto-V3m: Retrieving fundamental phone information
14:33:53.453 Moto-V3m: Switching from modem to phonebook
14:33:56.536 Moto-V3m: Now in phonebook mode
14:33:56.549 Moto-V3m: Phone serial number
14:33:56.556 Moto-V3m: Reading group information
14:33:56.586 Moto-V3m: Group Count: 14
14:33:56.631 Moto-V3m: Switching from phonebook to modem
14:33:56.757 Moto-V3m: Now in modem mode
14:33:56.763 Moto-V3m: Switching from modem to BREW
14:33:56.779 Moto-V3m: Now in brew mode
14:33:56.779 Moto-V3m: Now in brew mode
14:33:56.780 Moto-V3m: Reading Ringtone Index
14:33:56.782 Moto-V3m: Getting file contents '/MyToneDB.db'
14:33:58.207 Moto-V3m: Reading Wallpaper Index
14:33:58.207 Moto-V3m: Listing files in dir: 'motorola/shared/picture'
14:33:58.559 Moto-V3m: Fundamentals retrieved
14:33:58.559 Moto-V3m: Switching from BREW to modem
14:33:58.562 Moto-V3m: Now in modem mode
14:33:58.568 Moto-V3m: Reading SMS messages
14:33:58.568 Moto-V3m: Switching from modem to phonebook
14:34:01.654 Moto-V3m: Now in phonebook mode
14:34:01.680 Moto-V3m: Switching from phonebook to modem
14:34:01.805 Moto-V3m: Now in modem mode
14:34:01.805 ['uniqueserial', 'sms', 'sync', 'ringtone-index', =
'wallpaper-index', 'canned_msg', 'groups']
14:34:01.805 {'sms': 'OVERWRITE'}
Thanks!
Jon
-------------------------------------------------------------------------=
-----
=
-------------------------------------------------------------------------=
-----
Introducing Performance Central, a new site from SourceForge and=20
AppDynamics. Performance Central is your source for news, insights,=20
analysis and resources for efficient Application Performance =
Management.=20
Visit us today!
=
http://pubads.g.doubleclick.net/gampad/clk?id=3D48897511&iu=3D/4140/ostg.=
clktrk=20
-------------------------------------------------------------------------=
-----
_______________________________________________
BitPim-user mailing list [email protected]
Unsubscribe or change options at
https://lists.sourceforge.net/lists/listinfo/bitpim-user
There are several hundred people on this list. Please be
courteous, on topic and follow the instructions before posting
http://www.bitpim.org/help/support.htm=20
=
-------------------------------------------------------------------------=
-----
Introducing Performance Central, a new site from SourceForge and
AppDynamics. Performance Central is your source for news, insights,
analysis and resources for efficient Application Performance =
Management.
Visit us today!
=
http://pubads.g.doubleclick.net/gampad/clk?id=3D48897511&iu=3D/4140/ostg.=
clktrk
_______________________________________________
BitPim-user mailing list [email protected]
Unsubscribe or change options at
https://lists.sourceforge.net/lists/listinfo/bitpim-user
There are several hundred people on this list. Please be
courteous, on topic and follow the instructions before posting
http://www.bitpim.org/help/support.htm
-------------------------------------------------------------------------=
-------
-------------------------------------------------------------------------=
-----
Introducing Performance Central, a new site from SourceForge and=20
AppDynamics. Performance Central is your source for news, insights,=20
analysis and resources for efficient Application Performance Management. =
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=3D48897511&iu=3D/4140/ostg.=
clktrk=20
-------------------------------------------------------------------------=
-------
_______________________________________________
BitPim-user mailing list [email protected]
Unsubscribe or change options at
https://lists.sourceforge.net/lists/listinfo/bitpim-user
There are several hundred people on this list. Please be
courteous, on topic and follow the instructions before posting
http://www.bitpim.org/help/support.htm
------=_NextPart_000_008A_01CEA038.CD708840
Content-Type: text/html;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable
<HTML><HEAD></HEAD>
<BODY dir=3Dltr>
<DIV dir=3Dltr>
<DIV style=3D"FONT-FAMILY: 'Arial'; COLOR: #000000; FONT-SIZE: 10pt">
<DIV> </DIV>
<DIV>Jon,</DIV>
<DIV> </DIV>
<DIV>Don=92t hold your breath. Frankly, if *anyone* from the =
development=20
list had talked to me about anything 5 years ago I might have installed =
the=20
platform and fixed it. I should have. In the end I spent =
more time=20
asking for help than it would have taken to fix it.</DIV>
<DIV> </DIV>
<DIV>I found my notes from back then (8/24/2008). I just checked and I =
see that=20
the code has not changed. Here=92s what I found back then... =
basically, once=20
you hit 1,000 messages, an index gets set back to 0 and you get nothing, =
because=20
this happens before you get any output. The index becomes a corrupt =
value. I=20
would have changed the 999 to 2000 and also at least put some kind of =
warning=20
when the limit is reached.</DIV>
<DIV> </DIV>
<DIV>And I don=92t remember if I had overwrite set. I don=92t =
recall that in=20
the logs, but I don=92t see how that would stop this problem. At =
first=20
glance, 500 should not have caused a problem, but perhaps you aren=92t =
counting=20
the way the program does, because I don=92t remember exactly what would =
count as=20
an SMSEntry. Every message anywhere is my guess.</DIV>
<DIV> </DIV>
<DIV>I have no idea if anyone has the development platform running=20
anymore. I see little traffic for bitpim anymore. Maybe you =
will=20
have better luck than me finding someone who has it installed and who =
will take=20
the 5 minutes it takes to follow my code and make a =
=93Bitpim2000index=94 build=20
version and send it for test.</DIV>
<DIV> </DIV>
<DIV>See below:</DIV>
<DIV>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D</DIV>
<DIV> </DIV>
<DIV><A=20
href=3D"https://bitpim.svn.sourceforge.net/svnroot/bitpim/trunk/bitpim/sr=
c/sms.py">https://bitpim.svn.sourceforge.net/svnroot/bitpim/trunk/bitpim/=
src/sms.py</A></DIV>
<DIV> </DIV>
<DIV>class SMSEntry(object):</DIV>
<DIV>...</DIV>
<DIV> _id_index=3D0</DIV>
<DIV> _max_id_index=3D999</DIV>
<DIV>...</DIV>
<DIV> def _create_id(self):</DIV>
<DIV> "Create a BitPim serial =
for this=20
entry"</DIV>
<DIV> =
self._data.setdefault("serials",=20
[]).append(\</DIV>
<DIV> =20
{"sourcetype": "bitpim",</DIV>
<DIV> &n=
bsp;=20
"id": '%.3f%03d'%(time.time(), SMSEntry._id_index) })</DIV>
<DIV> if=20
SMSEntry._id_index<SMSEntry._max_id_index:</DIV>
<DIV> =20
SMSEntry._id_index+=3D1</DIV>
<DIV> else:</DIV>
<DIV> =20
SMSEntry._id_index=3D0</DIV>
<DIV>...</DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D</DIV>
<DIV>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D</DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV=20
style=3D"FONT-STYLE: normal; DISPLAY: inline; FONT-FAMILY: 'Calibri'; =
COLOR: #000000; FONT-SIZE: small; FONT-WEIGHT: normal; TEXT-DECORATION: =
none">
<DIV style=3D"FONT: 10pt tahoma">
<DIV><FONT face=3DArial></FONT> </DIV>
<DIV style=3D"BACKGROUND: #f5f5f5">
<DIV style=3D"font-color: black"><B>From:</B> <A =
[email protected]=20
href=3D"mailto:[email protected]">Jon Zadra</A> </DIV>
<DIV><B>Sent:</B> Friday, August 23, 2013 6:33 PM</DIV>
<DIV><B>To:</B> <A [email protected]=20
href=3D"mailto:[email protected]">[email protected]=
eforge.net</A>=20
</DIV>
<DIV><B>Subject:</B> Re: [BitPim-user] V3m does not transfer=20
SMS</DIV></DIV></DIV>
<DIV><FONT size=3D2 face=3DArial></FONT> </DIV></DIV>
<DIV=20
style=3D"FONT-STYLE: normal; DISPLAY: inline; FONT-FAMILY: 'Calibri'; =
COLOR: #000000; FONT-SIZE: small; FONT-WEIGHT: normal; TEXT-DECORATION: =
none">
<DIV dir=3Dltr>Thanks Jim.=20
<DIV><FONT size=3D2 face=3DArial></FONT> </DIV>
<DIV>Yes, I think I have a little over 500 messages, so if there is an =
upper=20
limit that may be my problem too. I had assumed the 'Overwrite' in the =
log=20
referred ot my choice to replace, rather than add to, the existing SMS =
messages=20
if any were stored in BitPim. I will take a look next time I get a =
chance=20
and see if the other selection changes that log message.</DIV>
<DIV><FONT size=3D2 face=3DArial></FONT> </DIV>
<DIV>Unless you ended up with a solution, don't worry about going =
through your=20
notes. I'll wait and see if I get a response from anyone =
else. If=20
it's anything useful, I'll pass it along.</DIV>
<DIV><FONT size=3D2 face=3DArial></FONT> </DIV>
<DIV>Thanks again,</DIV>
<DIV><FONT size=3D2 face=3DArial></FONT> </DIV>
<DIV>Jon</DIV></DIV>
<DIV class=3Dgmail_extra><FONT size=3D2 face=3DArial></FONT><FONT =
size=3D2=20
face=3DArial></FONT><FONT size=3D2 face=3DArial></FONT><FONT size=3D2=20
face=3DArial></FONT><FONT size=3D2 face=3DArial></FONT><FONT size=3D2=20
face=3DArial></FONT><BR><BR>
<DIV class=3Dgmail_quote>On Fri, Aug 23, 2013 at 6:25 PM, Jim <SPAN =
dir=3Dltr><<A=20
href=3D"mailto:[email protected]" =
target=3D_blank>[email protected]</A>></SPAN>=20
wrote:<BR>
<BLOCKQUOTE=20
style=3D"BORDER-LEFT: #ccc 1px solid; MARGIN: 0px 0px 0px 0.8ex; =
PADDING-LEFT: 1ex"=20
class=3Dgmail_quote>
<DIV dir=3Dltr>
<DIV dir=3Dltr>
<DIV style=3D"FONT-FAMILY: 'Arial'; FONT-SIZE: 10pt">
<DIV> </DIV>
<DIV>Hi,</DIV>
<DIV> </DIV>
<DIV>I used a Motorola Razr on Verizon from probably about fall of =
2007 for at=20
least a couple of years. I tried to use Bitpim to pull the SMS =
messages=20
and had some of the same problems you describe now.</DIV>
<DIV> </DIV>
<DIV>At the time, I looked at the code and posted to the user group =
and=20
developer group and no one was responsive at all. I believe this =
was in=20
the summer of 2008, but maybe 2009.</DIV>
<DIV> </DIV>
<DIV>Let me ask this... do you have a lot of messages? I =
did.</DIV>
<DIV> </DIV>
<DIV>Notice the line in your log:</DIV>
<DIV class=3Dim>
<DIV><FONT face=3DCalibri><FONT style=3D"FONT-SIZE: 12pt">14:34:01.805 =
{'sms':=20
'OVERWRITE'}</FONT></FONT></DIV>
<DIV><FONT size=3D3 face=3DCalibri></FONT> </DIV></DIV>
<DIV>When I looked at the code back then, I found a loop which was =
used to=20
read the messages was not set high enough for the number of messages I =
had=20
stored. The loop had no warning when it was reaching the =
limit. =20
From what I could tell, the program would simply crash when it reached =
the end=20
of the loop, before it processed the messages. I could never =
determine=20
why there was no comment about the upper limit of the loop. =
Possibly,=20
there was a memory issue if it was set higher, or, a develop just =
figured it=20
was good enough... maybe higher than what the phones would store at =
the time=20
the code was written. Most phones don=92t keep more than 1,000 =
messages,=20
but as I recall, the Razr could keep a lot more than that. I =
don=92t=20
recall even getting the message you got, so maybe someone tinkered =
with it=20
since then.</DIV>
<DIV> </DIV>
<DIV>If you search my postings, other than frustration, you will see =
where I=20
posted the suspicious line of code and the module it came from. =
As I=20
remember, I put out a request that anyone running the platform change =
one=20
number in the code and see if it would compile, and I offered to test =
it,=20
since at the time, I didn=92t feel like setting up the entire =
development=20
platform. It seemed like a simple request. I debugged it, =
let=20
someone else compile.</DIV>
<DIV> </DIV>
<DIV>No one ever responded.</DIV>
<DIV> </DIV>
<DIV>I would still be willing to test a custom version of Bitpim to =
see if it=20
fixes the problem, as long as I know it comes from a developer. =
I won=92t=20
hold my breath.</DIV>
<DIV> </DIV>
<DIV>I=92ll dig through notes if you wish to pursue this.</DIV>
<DIV> </DIV>
<DIV><FONT size=3D3 face=3DCalibri>take care,</FONT></DIV>
<DIV><FONT size=3D3 face=3DCalibri>Jim</FONT></DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV=20
style=3D"FONT-STYLE: normal; DISPLAY: inline; FONT-FAMILY: 'Calibri'; =
FONT-SIZE: small; FONT-WEIGHT: normal; TEXT-DECORATION: none">
<DIV style=3D"FONT: 10pt tahoma">
<DIV><FONT face=3DArial></FONT> </DIV>
<DIV style=3D"BACKGROUND: #f5f5f5">
<DIV><B>From:</B> <A [email protected] =
href=3D"mailto:[email protected]"=20
target=3D_blank>Jon Zadra</A> </DIV>
<DIV><B>Sent:</B> Friday, August 23, 2013 2:38 PM</DIV>
<DIV><B>To:</B> <A [email protected]=20
href=3D"mailto:[email protected]"=20
target=3D_blank>[email protected]</A> </DIV>
<DIV><B>Subject:</B> [BitPim-user] V3m does not transfer =
SMS</DIV></DIV></DIV>
<DIV><FONT face=3DArial></FONT> </DIV></DIV>
<DIV=20
style=3D"FONT-STYLE: normal; DISPLAY: inline; FONT-FAMILY: 'Calibri'; =
FONT-SIZE: small; FONT-WEIGHT: normal; TEXT-DECORATION: none">
<DIV>
<DIV class=3Dh5>
<DIV dir=3Dltr>Hello,=20
<DIV><FONT face=3DArial></FONT> </DIV>
<DIV>I have a Motorola V3m (sprint). I am trying to pull all the =
SMS=20
messages off of it.=20
<DIV><FONT face=3DArial></FONT> </DIV>
<DIV>It does not auto-detect, but I manually set it to the V3m =
(sprint) phone=20
on COM4. I am able to successfully get the phone book with these =
settings, and although it will briefly display the status of SMS in =
the status=20
bar current task, no SMS messages are transferred. There is no=20
error.</DIV>
<DIV><FONT face=3DArial></FONT> </DIV>
<DIV>I have tried using COM3 (unable to communicate error), and also =
tried=20
other similar phone settings (V3mM, V3cm, etc).</DIV>
<DIV><FONT face=3DArial></FONT> </DIV>
<DIV>Info:</DIV>
<DIV>BitPim Ver 1.0.7</DIV>
<DIV>OS: Windows 7 x64</DIV>
<DIV>Using USB cable</DIV>
<DIV><FONT face=3DArial></FONT> </DIV>
<DIV>Phone info (retrieved by BitPim): </DIV>
<DIV><FONT face=3DArial></FONT> </DIV>
<DIV>Model: Motorola V3m-Sprint Phone</DIV>
<DIV>Firmware Version: 24.2_00.37.0S3,2032</DIV>
<DIV><FONT face=3DArial></FONT> </DIV>
<DIV>Below is the log file excerpt of an attempted SMS transfer:</DIV>
<DIV><FONT face=3DArial></FONT> </DIV>
<DIV>
<DIV>
<DIV>14:33:36.296 COM4: USB support is not available</DIV>
<DIV>14:33:36.296 COM4: Opening port COM4, 115200 baud, timeout =
3.000000,=20
hardwareflow 0, softwareflow 0</DIV>
<DIV>14:33:36.302 COM4: Open of comm port suceeded</DIV>
<DIV>14:33:36.303 Moto-V3m: Getting Phone Info</DIV>
<DIV>14:33:36.308 Moto-V3m: Switching to modem</DIV>
<DIV>14:33:36.322 Moto-V3m: Now in modem mode</DIV>
<DIV>14:33:36.342 Moto-V3m: Switching from modem to phonebook</DIV>
<DIV>14:33:39.427 Moto-V3m: Now in phonebook mode</DIV>
<DIV>14:33:39.450 Moto-V3m: Switching from phonebook to modem</DIV>
<DIV>14:33:39.575 Moto-V3m: Now in modem mode</DIV>
<DIV>14:33:53.450 Moto-V3m: Retrieving fundamental phone =
information</DIV>
<DIV>14:33:53.453 Moto-V3m: Switching from modem to phonebook</DIV>
<DIV>14:33:56.536 Moto-V3m: Now in phonebook mode</DIV>
<DIV>14:33:56.549 Moto-V3m: Phone serial number</DIV>
<DIV>14:33:56.556 Moto-V3m: Reading group information</DIV>
<DIV>14:33:56.586 Moto-V3m: Group Count: 14</DIV>
<DIV>14:33:56.631 Moto-V3m: Switching from phonebook to modem</DIV>
<DIV>14:33:56.757 Moto-V3m: Now in modem mode</DIV>
<DIV>14:33:56.763 Moto-V3m: Switching from modem to BREW</DIV>
<DIV>14:33:56.779 Moto-V3m: Now in brew mode</DIV>
<DIV>14:33:56.779 Moto-V3m: Now in brew mode</DIV>
<DIV>14:33:56.780 Moto-V3m: Reading Ringtone Index</DIV>
<DIV>14:33:56.782 Moto-V3m: Getting file contents '/MyToneDB.db'</DIV>
<DIV>14:33:58.207 Moto-V3m: Reading Wallpaper Index</DIV>
<DIV>14:33:58.207 Moto-V3m: Listing files in dir:=20
'motorola/shared/picture'</DIV>
<DIV>14:33:58.559 Moto-V3m: Fundamentals retrieved</DIV>
<DIV>14:33:58.559 Moto-V3m: Switching from BREW to modem</DIV>
<DIV>14:33:58.562 Moto-V3m: Now in modem mode</DIV>
<DIV>14:33:58.568 Moto-V3m: Reading SMS messages</DIV>
<DIV>14:33:58.568 Moto-V3m: Switching from modem to phonebook</DIV>
<DIV>14:34:01.654 Moto-V3m: Now in phonebook mode</DIV>
<DIV>14:34:01.680 Moto-V3m: Switching from phonebook to modem</DIV>
<DIV>14:34:01.805 Moto-V3m: Now in modem mode</DIV>
<DIV>14:34:01.805 ['uniqueserial', 'sms', 'sync', 'ringtone-index',=20
'wallpaper-index', 'canned_msg', 'groups']</DIV>
<DIV>14:34:01.805 {'sms': 'OVERWRITE'}</DIV></DIV></DIV>
<DIV><FONT face=3DArial></FONT> </DIV>
<DIV><FONT face=3DArial></FONT> </DIV>
<DIV><FONT face=3DArial></FONT> </DIV>
<DIV>Thanks!</DIV>
<DIV><FONT face=3DArial></FONT> </DIV>
<DIV>Jon</DIV></DIV></DIV></DIV></DIV>
<HR>
=
-------------------------------------------------------------------------=
-----<BR>Introducing=20
Performance Central, a new site from SourceForge and <BR>AppDynamics.=20
Performance Central is your source for news, insights, <BR>analysis =
and=20
resources for efficient Application Performance Management. <BR>Visit =
us=20
today!<BR><A=20
=
href=3D"http://pubads.g.doubleclick.net/gampad/clk?id=3D48897511&iu=3D=
/4140/ostg.clktrk"=20
=
target=3D_blank>http://pubads.g.doubleclick.net/gampad/clk?id=3D48897511&=
amp;iu=3D/4140/ostg.clktrk</A>=20
<HR>
_______________________________________________<BR>BitPim-user mailing =
list <A=20
href=3D"mailto:[email protected]"=20
target=3D_blank>[email protected]</A><BR>Unsubscribe =
or change=20
options at<BR><A=20
href=3D"https://lists.sourceforge.net/lists/listinfo/bitpim-user"=20
=
target=3D_blank>https://lists.sourceforge.net/lists/listinfo/bitpim-user<=
/A><BR><BR>There=20
are several hundred people on this list. Please be<BR>courteous, =
on=20
topic and follow the instructions before posting<BR><A=20
href=3D"http://www.bitpim.org/help/support.htm"=20
target=3D_blank>http://www.bitpim.org/help/support.htm</A>=20
=
</DIV></DIV></DIV></DIV><BR>---------------------------------------------=
---------------------------------<BR>Introducing=20
Performance Central, a new site from SourceForge and<BR>AppDynamics.=20
Performance Central is your source for news, insights,<BR>analysis and =
resources for efficient Application Performance Management.<BR>Visit =
us=20
today!<BR><A=20
=
href=3D"http://pubads.g.doubleclick.net/gampad/clk?id=3D48897511&iu=3D=
/4140/ostg.clktrk"=20
=
target=3D_blank>http://pubads.g.doubleclick.net/gampad/clk?id=3D48897511&=
amp;iu=3D/4140/ostg.clktrk</A><BR>_______________________________________=
________<BR>BitPim-user=20
mailing list <A=20
=
href=3D"mailto:[email protected]">[email protected]=
eforge.net</A><BR>Unsubscribe=20
or change options at<BR><A=20
href=3D"https://lists.sourceforge.net/lists/listinfo/bitpim-user"=20
=
target=3D_blank>https://lists.sourceforge.net/lists/listinfo/bitpim-user<=
/A><BR><BR>There=20
are several hundred people on this list. Please be<BR>courteous, =
on=20
topic and follow the instructions before posting<BR><A=20
href=3D"http://www.bitpim.org/help/support.htm"=20
=
target=3D_blank>http://www.bitpim.org/help/support.htm</A><BR></BLOCKQUOT=
E></DIV>
<DIV> </DIV></DIV>
<P>
<HR>
-------------------------------------------------------------------------=
-----<BR>Introducing=20
Performance Central, a new site from SourceForge and <BR>AppDynamics.=20
Performance Central is your source for news, insights, <BR>analysis and=20
resources for efficient Application Performance Management. <BR>Visit us =
today!<BR>http://pubads.g.doubleclick.net/gampad/clk?id=3D48897511&iu=
=3D/4140/ostg.clktrk=20
<P>
<HR>
_______________________________________________<BR>BitPim-user mailing =
list=20
[email protected]<BR>Unsubscribe or change options=20
at<BR>https://lists.sourceforge.net/lists/listinfo/bitpim-user<BR><BR>The=
re are=20
several hundred people on this list. Please be<BR>courteous, on =
topic and=20
follow the instructions before=20
posting<BR>http://www.bitpim.org/help/support.htm</DIV></DIV></DIV></BODY=
></HTML>
------=_NextPart_000_008A_01CEA038.CD708840--
--===============0576710152218259479==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
------------------------------------------------------------------------------
Introducing Performance Central, a new site from SourceForge and
AppDynamics. Performance Central is your source for news, insights,
analysis and resources for efficient Application Performance Management.
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511&iu=/4140/ostg.clktrk
--===============0576710152218259479==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
_______________________________________________
BitPim-user mailing list [email protected]
Unsubscribe or change options at
https://lists.sourceforge.net/lists/listinfo/bitpim-user
There are several hundred people on this list. Please be
courteous, on topic and follow the instructions before posting
http://www.bitpim.org/help/support.htm
--===============0576710152218259479==--