Implementation of the CellularInterface for u-blox C027 and C030 (non-N2xx flavour) modems that uses the IP stack on-board the cellular modem, hence not requiring LWIP (and so less RAM) and allowing any AT command exchanges to be carried out at the same time as data transfers (since the modem remains in AT mode all the time). This library may be used from mbed 5.5 onwards. If you need to use SMS, USSD or access the modem file system at the same time as using the CellularInterface then use ublox-at-cellular-interface-ext instead.

Dependents:   example-ublox-cellular-interface example-ublox-cellular-interface_r410M example-ublox-mbed-client example-ublox-cellular-interface ... more

Files at this revision

API Documentation at this revision

Comitter:
fahim alavi
Date:
Wed Sep 27 15:33:07 2017 +0500
Parent:
8:edac5187d765
Child:
10:ba18f4418ee8
Commit message:
Config file added

Changed in this revision

TESTS/unit_tests/default/platform_config.py Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TESTS/unit_tests/default/platform_config.py	Wed Sep 27 15:33:07 2017 +0500
@@ -0,0 +1,71 @@
+import json
+from time import sleep
+import sys
+import re
+import os
+
+myfile = os.path.join('example-ublox-cellular-interface','mbed_app.json')
+#with open(myfile, 'r') as f:
+#  data = json.load(f)
+
+data={}
+  
+if 'config' not in data:
+  data['config'] = {}
+  data['target_overrides'] = {}
+  data['config']['echo-udp-port'] ={}  
+  data['config']['echo-server'] ={}  
+  data['config']['echo-tcp-port']={}  
+  data['config']['debug-on'] = {}
+  data['config']['run-sim-pin-change-tests'] = {}
+  data['config']['default-pin'] = {}
+  data['config']['apn'] = {}
+  data['config']['username'] = {}
+  data['config']['password'] = {}
+  data['config']['alt-pin'] = {}
+  data['config']['incorrect-pin'] = {}
+  data['config']['ntp-server'] = {}
+  data['config']['ntp-port'] = {}
+  data['config']['local-port'] = {}
+  data['config']['udp-max-packet-size'] = {}
+  data['config']['udp-max-frag-packet-size'] = {}  
+  
+  #data['config']['echo-server']['value'] = '\"echo.u-blox.com\"'
+  data['config']['echo-server']['value'] = '\"ciot.it-sgn.u-blox.com\"'
+  data['config']['echo-udp-port']['value'] = 7
+  data['config']['echo-tcp-port']['value'] = 7
+  data['config']['echo-udp-port']['value'] = 5050
+  data['config']['echo-tcp-port']['value'] = 5055
+  data['config']['debug-on']['value'] = True
+  data['config']['run-sim-pin-change-tests'] = 0
+  data['config']['default-pin'] = '\"1234\"'
+  data['config']['apn'] = 0
+  data['config']['username'] = 0
+  data['config']['password'] = 0
+  data['config']['alt-pin'] = '\"9876\"'
+  data['config']['incorrect-pin'] = '\"1530\"'
+  data['config']['ntp-server'] = '\"2.pool.ntp.org\"'
+  data['config']['ntp-port'] = 123
+  data['config']['local-port'] = 16
+  data['config']['udp-max-packet-size'] = 508
+  data['config']['udp-max-frag-packet-size'] = 1500
+  
+  data['target_overrides']['*'] = {}
+  data['target_overrides']['*']['lwip.ppp-enabled'] = True
+  data['target_overrides']['*']['platform.stdio-convert-newlines'] = True
+  
+  
+  print('data', data)
+else:
+  data['config']['echo-server']['value'] = '\"ciot.it-sgn.u-blox.com\"'
+  data['config']['echo-udp-port']['value'] = 5050
+  data['config']['echo-tcp-port']['value'] = 5055
+  data['config']['debug-on']['value'] = True
+
+  print('echo-server',data['config']['echo-server']['value'])
+  print('echo-udp-port',data['config']['echo-udp-port']['value'])
+  print('echo-tcp-port',data['config']['echo-tcp-port']['value'])
+  print('debug-on', data['config']['debug-on']['value'])
+
+with open(myfile, 'w') as f:
+  json.dump(data, f)