Changeset 2244

Show
Ignore:
Timestamp:
07/03/07 12:50:58 (1 year ago)
Author:
abaumann
Message:

Change init to use AT+MODE=2 (ticket #505)
I have no idea what this mode means, and it works the same way on my
phone, but someone else reported that a V3c didn't work without MODE=2.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/moto-sync/README

    r2241 r2244  
    1919 * V635 (tested reading only) 
    2020 
    21 Untested, but should be working with extended calendar support (#425): 
    22  * K1 KRZR 
    23  * V3xx RAZR 
     21Untested, but might be working with recent changes: 
     22 * K1 KRZR (extended calendar suppport, ticket #425) 
     23 * V3xx RAZR (extended calendar suppport, ticket #425) 
     24 * V3c (doesn't like AT+MODE=0, ticket #505) 
    2425 
    2526Models known not to work: 
    2627 * V600 (shorter contact entries, ticket #504) 
    27  * V3c (doesn't like AT+MODE=0, ticket #505) 
    2828 * A780 (doesn't seem to respond to AT commands, except with ERROR) 
    2929 
  • plugins/moto-sync/motosync.py

    r2240 r2244  
    792792 
    793793        # reset the phone and send it a bunch of init strings 
     794        # I don't know what the mode numbers are, but AT&F only works in MODE=0, and 
     795        # people have reported that other commands only work in MODE=2, hence this... 
     796        self.__do_cmd('AT+MODE=0') # change mode 
    794797        self.__do_cmd('AT&F')      # reset to factory defaults 
    795         self.__do_cmd('AT+MODE=0') # ? 
     798        self.__do_cmd('AT+MODE=2') # change mode again 
    796799        self.__do_cmd('ATE0Q0V1')  # echo off, result codes off, verbose results 
    797800