From: Mark_Venture <mar...@gm...> - 2007-04-06 03:53:34
|
I am curious... I know Bitpim currently supports the Moto V3Cm and E815m but wont autodetect them... Looking at the code it appears BitPim uses AT +GMM and maybe AT +GMI to detect the phone. Motorola Phone Tools uses the following commands to detect the phones... AT +Mode=2 AT +cgmm AT +Mode=0 .......... capture from my Alltel Flashed V3C... issuing those commands in Hyperterm at +mode=2 OK +MBAN: Copyright 2000-2004 Motorola, Inc. at +cgmm +CGMM: "CDMA800","CDMA1900","MODEL=V3Cm" OK at +mode=0 OK ------------------------------------------------------------- And from my E815.... (Verizon firmware, but I edited *Seem* *2827*, *Record* *1 *, *Bytes* (h) *22*, Offset *0008* to change from E815 to E815m) at +mode=2 OK +MBAN: Copyright 2000-2004 Motorola, Inc. at +cgmm +CGMM: "CDMA800","CDMA1900","MODEL=E815m" OK at +mode=0 OK --------------------------------------------------------------- >From my V710... (verizon firmware, but I edited *Seem* *04FF*, *Record* *1*, *Bytes* (h) *22*, Offset *0008 *to change from V710 to V710M) at +mode=2 OK +MBAN: Copyright 2000-2004 Motorola, Inc. at +cgmm +CGMM: "CDMA800","CDMA1900","AMPS800","MODEL=V710M" OK at +mode=0 OK ------------------------------------------------------------ The editing the 2827 seem on the V3C and E815, and 04FF on the V710 does change the value of Model= returned by the AT +CGMM command... Could something be added to BitPim so that when the V3C or E815 is detected it further does the AT +Mode=2, then AT +CGMM to determine if its the "M" model phone therefore allowing autodetection of them in BitPim? Mark_Venture |
From: Boz1 <boz...@gm...> - 2008-12-08 16:51:51
|
Hello. What is the status of the V3m Notepad/Memo import and/or export using BitPim? Christopher Matuszak wrote: > > The V3m is working with autodetect for me with NO extra seem edits...the > only seem edit I did was to enable OBEX transfers..... > > I copied out the V3c and V710 phones and replaces a few variable strings > like model and what not... > > > > These are specific lines I changed....... > > > > ***************************************************************************** > ****** > > # BitPim modules > > Import com_motov710 > > Import p_motov3c > > Import helpids > > Import call_history > > > > Parentphone=com_motov710.Phone > > Class Phone(parentphone): > > Desc='Motorola CDMA V3m Phone' > > Helpid=helpids.ID_PHONE_MOTOV3C > > Serialsname='Motorola CDMA V3m phone' > > Protocolclass=p_motov3m > > > > Def __init__(self, logtarget, commport): > > Parentphone.__init__(self, logtarget, commport) > > > > Def _detectphone(coms, likely_ports, res, _module, _log): > > Pass > > Detectphone=staticmethod(_detectphone) > > > > #---------------------------------------------------------------------------- > - > > Parentprofile=com_motov710.Profile > > Class Profile(parentprofile): > > Serialsname=Phone.serialsname > > Phone_model='Motorola CDMA V3m Phone' > > _supportedsyncs=( > > ('phonebook', 'read', None), # all phonebook reading > > ('phonebook', 'write', 'OVERWRITE'), # only overwriting phonebook > > ('calendar', 'read', None), # all calendar reading > > ('calendar', 'write', 'OVERWRITE'), # only overwriting calendar > > ('ringtone', 'read', None), # all ringtone reading > > ('ringtone', 'write', 'OVERWRITE'), > > ('wallpaper', 'read', None), # all wallpaper reading > > ('wallpaper', 'write', 'OVERWRITE'), > > ('memo', 'read', None), # all memo list reading DJP > > ('memo', 'write', 'OVERWRITE'), # all memo list writing DJP > > ('sms', 'read', None), # all SMS list reading DJP > > ('call_history', 'read', None), > > ) > > ***************************************************************************** > ****** > > > > Of course I created all the additional info in the helpids...and > whatnot.... > > The p_motov3m is exactly the same as the v3c version but I am slowly > modifying it to fit my needs > > > > I have call_history almost working aside from a few minor bugs... > > Same with the Memos.....I find the Notepad files as fairly easy to import > into bitpim but the exporting is giving me a little bit of trouble..... > > > > I am currently working on adding more functionality like full calendar > support and other features....SMS retrieveal works fine ... Ringtones I > think we can do more with... > > > > Also I am currently working on enabling the Multimedia portion of Bitpim > with this phone....reading the MicroSD card is actually fairly easy.... -- View this message in context: http://www.nabble.com/Moto-V3Cm%2C-E815m-auto-detection--tp9867548p20898982.html Sent from the Bitpim - Dev mailing list archive at Nabble.com. |