Changes between Version 18 and Version 19 of expansion/gw16126


Ignore:
Timestamp:
03/04/2019 10:24:25 PM (5 years ago)
Author:
Ryan Erbstoesser
Comment:

add edrx info and collapse some code examples

Legend:

Unmodified
Added
Removed
Modified
  • expansion/gw16126

    v18 v19  
    1919  * FT231X USB UART connected to a u-blox NINA-B30x BLE module
    2020  * u-blox NINA-B301 BLE module USB 2.0 controller
    21   * u-blox SARA-R4 Cat M-1 / NB1 modem with nano-SIM socket
     21  * u-blox SARA-R4 Cat M1 / NB1 modem with nano-SIM socket
    2222
    2323These look like the following with {{{lsusb}}}:
     
    4343
    4444[=#sara-r4]
    45 == u-blox SARA-R4 LTE Cat M-1 modem
     45== u-blox SARA-R4 LTE Cat M1 modem
    4646The [https://www.u-blox.com/sites/default/files/SARA-R4-N4_ProductSummary_%28UBX-16019228%29.pdf u-blox SARA-R410M-52B] LTE Cat M1 modem supports M1 bands 2,4,5,12,13. For more info on the CATM1 standard and use cases see the following [https://www.u-blox.com/en/lte-cat-m1 CATM1 Explained Link].
     47
     48CAT M1 is specifically for low power small data applications. Because of this, there are two items that help to reduce power:
     49 *
     50 * LTE PSM (Power Saving Mode)
     51 * LTE eDRX (Extended Discontinuous Reception)
     52  * This can be handy to disable if a lot of continuous data is required. It may help to disable eDRX (with the +CEDRXS command). In general, u-blox recommends disabling eDRX, which is currently default enabled in several of the +UMNOPROF profiles.
    4753
    4854[=#software]
     
    5864 - LTE Cat-M1 modem: requires network-manager modemmanager libqmi
    5965 - BLE HCI: requires bluez
    60  - fully supported (with the above)
     66 - Fully supported (with the above)
    6167
    6268OpenWrt 18.6.1:
     
    81873 different examples of how to connect, testing done on a Newport family board : (set APN env var appropriately)
    8288 * Ubuntu using !NetworkManager:
     89
     90[[CollapsibleStart(Example)]]
    8391{{{#!bash
    8492root@xenial-newport:~# nmcli --version
     
    108116rtt min/avg/max/mdev = 188.688/378.624/568.561/189.937 ms
    109117}}}
     118[[CollapsibleEnd]]
    110119 * Ubuntu using !ModemManager:
     120
     121[[CollapsibleStart(Example)]]
    111122{{{#!bash
    112123root@xenial-newport:~# mmcli --modem 0 #verify modem is detected
     
    216227rtt min/avg/max/mdev = 188.688/378.624/568.561/189.937 ms
    217228}}}
     229[[CollapsibleEnd]]
    218230 * Ubuntu using libqmi only (no !NetworkManager or !ModemManager)
     231[[CollapsibleStart(Example)]]
    219232{{{#!bash
    220233root@xenial-newport:~# qmicli --version
     
    273286root@xenial-newport:~# echo "nameserver 198.224.182.135" > /etc/resolv.conf # assign nameserver
    274287}}}
     288[[CollapsibleEnd]]
    275289
    276290 * !OpenWrt (18.06)