Package phones :: Module com_motoe815
[hide private]
[frames] | no frames]

Source Code for Module phones.com_motoe815

 1  ### BITPIM 
 2  ### 
 3  ### Copyright (C) 2006 Joe Pham <djpham@bitpim.org> 
 4  ### 
 5  ### This program is free software; you can redistribute it and/or modify 
 6  ### it under the terms of the BitPim license as detailed in the LICENSE file. 
 7  ### 
 8  ### $Id: com_motoe815.py 3918 2007-01-19 05:15:12Z djpham $ 
 9   
10  """Communicate with Motorola E815 phones using AT commands""" 
11   
12  # BitPim modules 
13  import com_motov710 
14  import helpids 
15   
16  parentphone=com_motov710.Phone 
17 -class Phone(parentphone):
18 desc='Moto-E815' 19 helpid=helpids.ID_PHONE_MOTOE815 20 serialsname='motoe815'
21 22 #------------------------------------------------------------------------------ 23 parentprofile=com_motov710.Profile
24 -class Profile(parentprofile):
25 serialsname=Phone.serialsname 26 # use for auto-detection 27 phone_manufacturer='Motorola' 28 phone_model='E815 ' 29 common_model_name='E815' 30 generic_phone_model='Motorola CDMA e815 Phone'
31