PyXR

c:\projects\bitpim\src \ phones \ com_motov3c.py



0001 ### BITPIM
0002 ###
0003 ### Copyright (C) 2006 Joe Pham <djpham@bitpim.org>
0004 ###
0005 ### This program is free software; you can redistribute it and/or modify
0006 ### it under the terms of the BitPim license as detailed in the LICENSE file.
0007 ###
0008 ### $Id: com_motov3c.py 4255 2007-05-28 02:12:29Z djpham $
0009 
0010 """Communicate with Motorola V3c phones using AT commands"""
0011 
0012 # system modules
0013 
0014 # BitPim modules
0015 import com_motov710
0016 import p_motov3c
0017 import helpids
0018 
0019 parentphone=com_motov710.Phone
0020 class Phone(parentphone):
0021     desc='Moto-V3c'
0022     helpid=helpids.ID_PHONE_MOTOV3C
0023     serialsname='motov3c'
0024     protocolclass=p_motov3c
0025 
0026     def __init__(self, logtarget, commport):
0027         parentphone.__init__(self, logtarget, commport)
0028 
0029 #------------------------------------------------------------------------------
0030 parentprofile=com_motov710.Profile
0031 class Profile(parentprofile):
0032     serialsname=Phone.serialsname
0033     # use for auto-detection
0034     phone_manufacturer='Motorola'
0035     phone_model='V3c '
0036     common_model_name='V3c'
0037     generic_phone_model='Motorola CDMA V3c Phone'
0038 

Generated by PyXR 0.9.4