PyXR

c:\projects\bitpim\src \ phones \ com_motoe815.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_motoe815.py 3918 2007-01-19 05:15:12Z djpham $
0009 
0010 """Communicate with Motorola E815 phones using AT commands"""
0011 
0012 # BitPim modules
0013 import com_motov710
0014 import helpids
0015 
0016 parentphone=com_motov710.Phone
0017 class Phone(parentphone):
0018     desc='Moto-E815'
0019     helpid=helpids.ID_PHONE_MOTOE815
0020     serialsname='motoe815'
0021 
0022 #------------------------------------------------------------------------------
0023 parentprofile=com_motov710.Profile
0024 class Profile(parentprofile):
0025     serialsname=Phone.serialsname
0026     # use for auto-detection
0027     phone_manufacturer='Motorola'
0028     phone_model='E815 '
0029     common_model_name='E815'
0030     generic_phone_model='Motorola CDMA e815 Phone'
0031 

Generated by PyXR 0.9.4