Changes between Version 18 and Version 19 of expansion/gw16126
- Timestamp:
- 03/04/2019 10:24:25 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
expansion/gw16126
v18 v19 19 19 * FT231X USB UART connected to a u-blox NINA-B30x BLE module 20 20 * u-blox NINA-B301 BLE module USB 2.0 controller 21 * u-blox SARA-R4 Cat M -1 / NB1 modem with nano-SIM socket21 * u-blox SARA-R4 Cat M1 / NB1 modem with nano-SIM socket 22 22 23 23 These look like the following with {{{lsusb}}}: … … 43 43 44 44 [=#sara-r4] 45 == u-blox SARA-R4 LTE Cat M -1 modem45 == u-blox SARA-R4 LTE Cat M1 modem 46 46 The [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 48 CAT 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. 47 53 48 54 [=#software] … … 58 64 - LTE Cat-M1 modem: requires network-manager modemmanager libqmi 59 65 - BLE HCI: requires bluez 60 - fully supported (with the above)66 - Fully supported (with the above) 61 67 62 68 OpenWrt 18.6.1: … … 81 87 3 different examples of how to connect, testing done on a Newport family board : (set APN env var appropriately) 82 88 * Ubuntu using !NetworkManager: 89 90 [[CollapsibleStart(Example)]] 83 91 {{{#!bash 84 92 root@xenial-newport:~# nmcli --version … … 108 116 rtt min/avg/max/mdev = 188.688/378.624/568.561/189.937 ms 109 117 }}} 118 [[CollapsibleEnd]] 110 119 * Ubuntu using !ModemManager: 120 121 [[CollapsibleStart(Example)]] 111 122 {{{#!bash 112 123 root@xenial-newport:~# mmcli --modem 0 #verify modem is detected … … 216 227 rtt min/avg/max/mdev = 188.688/378.624/568.561/189.937 ms 217 228 }}} 229 [[CollapsibleEnd]] 218 230 * Ubuntu using libqmi only (no !NetworkManager or !ModemManager) 231 [[CollapsibleStart(Example)]] 219 232 {{{#!bash 220 233 root@xenial-newport:~# qmicli --version … … 273 286 root@xenial-newport:~# echo "nameserver 198.224.182.135" > /etc/resolv.conf # assign nameserver 274 287 }}} 288 [[CollapsibleEnd]] 275 289 276 290 * !OpenWrt (18.06)