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

Source Code for Module phones.com_motoe815m

 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_motoe815m.py 4205 2007-04-27 02:05:15Z djpham $ 
 9   
10  """Communicate with Motorola E815m phones using AT commands""" 
11   
12  # BitPim modules 
13  import com_motov710m 
14  import helpids 
15   
16  parentphone=com_motov710m.Phone 
17 -class Phone(parentphone):
18 desc='Moto-E815m' 19 helpid=helpids.ID_PHONE_MOTOE815M 20 serialsname='motoe815m'
21 22 #------------------------------------------------------------------------------ 23 parentprofile=com_motov710m.Profile
24 -class Profile(parentprofile):
25 serialsname=Phone.serialsname 26 # use for auto-detection 27 phone_manufacturer='Motorola' 28 phone_model='E815m' 29 common_model_name='E815' 30 generic_phone_model='Motorola CDMA e815 Phone'
31