Changeset 2244
- Timestamp:
- 07/03/07 12:50:58 (1 year ago)
- Files:
-
- plugins/moto-sync/README (modified) (1 diff)
- plugins/moto-sync/motosync.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/moto-sync/README
r2241 r2244 19 19 * V635 (tested reading only) 20 20 21 Untested, but should be working with extended calendar support (#425): 22 * K1 KRZR 23 * V3xx RAZR 21 Untested, 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) 24 25 25 26 Models known not to work: 26 27 * V600 (shorter contact entries, ticket #504) 27 * V3c (doesn't like AT+MODE=0, ticket #505)28 28 * A780 (doesn't seem to respond to AT commands, except with ERROR) 29 29 plugins/moto-sync/motosync.py
r2240 r2244 792 792 793 793 # 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 794 797 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 796 799 self.__do_cmd('ATE0Q0V1') # echo off, result codes off, verbose results 797 800
