PyXR

c:\projects\bitpim\src \ phones \ com_motov3cm.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_motov3cm.py 4255 2007-05-28 02:12:29Z djpham $
0009 
0010 """Communicate with Motorola V3cm phones using AT commands"""
0011 
0012 # BitPim modules
0013 import com_motov710m
0014 import p_motov3c
0015 import helpids
0016 
0017 parentphone=com_motov710m.Phone
0018 class Phone(parentphone):
0019     desc='Moto-V3cm'
0020     helpid=helpids.ID_PHONE_MOTOV3CM
0021     serialsname='motov3cm'
0022     protocolclass=p_motov3c
0023 
0024     def __init__(self, logtarget, commport):
0025         parentphone.__init__(self, logtarget, commport)
0026 
0027 #------------------------------------------------------------------------------
0028 parentprofile=com_motov710m.Profile
0029 class Profile(parentprofile):
0030     serialsname=Phone.serialsname
0031     # use for auto-detection
0032     phone_manufacturer='Motorola'
0033     phone_model='V3cm'
0034     common_model_name='V3c'
0035     generic_phone_model='Motorola CDMA V3c Phone'
0036 

Generated by PyXR 0.9.4