Home › Forums › Mayfly Data Logger › XBee and Hologram LTE: issues connecting to internet › Reply To: XBee and Hologram LTE: issues connecting to internet
2020-12-22 at 4:52 PM
#14963
Thanks for the prompt reply Sara. You must love these LTE’s by now!
I have had some feedback from Spark who suggest that they have lots of other SARA R410M devices running on the network.
Sara, does the information below mean anything to you? I figure that I would construct code using “gsmModem.sendAT(GF(“”)) ” to send these configurations to the LTE?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# Initial module SW reset at+cfun=15 # Set verbose error codes at+cmee=2 # model identification at+cgmm SARA—R410-02B # Get the current module FW version at+cgmr L0.0.00.00.05.06 [Feb 03 2018 13:00:41] # set MNO profile to look from SIM (ICCID) at+umnoprof=1 # Force only LTE-M1 radio protocols # at+urat=7,7,7 at+urat=7 # set Spark LTE-M1 bands in bit-mask - LTE-M1 using Band-3 (1800MHz) & Band-28 (700MHz) at+ubandmask=0,134217732 # configure APN & save config at+cgdcont=1,”IP”,”m2m” at&w # Second module SW reset at+cfun=15 # enable NW registration and location registration at+cereg=1 # Check if NW registration has occurred and if we can see the Spark LTE-M1 NW broadcasts at+cops? +cops: 0,0,"Spark NZ Spark NZ",8 OK # check if NW registered (result code should be ‘1,1’ - ‘enabled’, registered’ at+cereg? +CEREG: 1,1 OK # check if PDP context attached on APN1 (result code should be ‘1’) at+cgatt? +CGATT: 1 OK # check on configured active APN’s at+cgdcont? +CGDCONT: 1,"IP","m2m","10.1.2.137",0,0,0,0 OK # check on configured active APN’s acquired WAN IP address(s) at+cgpaddr=1 +CGPADDR: 1,10.1.2.137 OK |