~nherriot/bcm/sms-confirmation

« back to all changes in this revision

Viewing changes to src/core/plugins/devices/zte_k3805.py

  • Committer: andrewbird
  • Date: 2010-01-23 20:52:53 UTC
  • Revision ID: svn-v4:302e0824-f0b9-4af8-b993-bc22a3d40462:trunk:493
BMC 3.x - Utilise HSO 'NDIS' dialer for ZTE's Icera

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
19
 
20
20
from wader.common.hardware.icera import IceraWCDMADevicePlugin
 
21
from wader.common.consts import MM_IP_METHOD_STATIC
21
22
 
22
23
 
23
24
class ZTEK3805(IceraWCDMADevicePlugin):
35
36
 
36
37
    hardcoded_ports = (0, 1)
37
38
 
 
39
    dialer = 'hso_native'
 
40
    ipmethod = MM_IP_METHOD_STATIC
 
41
 
38
42
 
39
43
zte_k3805 = ZTEK3805()
40
44