You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since most of the implementations of NBIoT networks are based on IPv6, it was essential to move to a custom implementation of UDP socket, as Pycom do not yet support natively IPv6 sockets. Thus, in (examples/pycom/nbiot/pycom_at_socket.py) you can find a complete implementation of a sample socket that directly uses Sequans AT commands.
233
+
Since most of the implementations of NBIoT networks are based on IPv6, it was essential to move to a custom implementation of UDP socket, as Pycom do not yet support natively IPv6 sockets. Thus, in [examples/pycom/nbiot/pycom_at_socket.py](https://github.com/insighio/microCoAPy/blob/master/examples/pycom/nbiot/pycom_at_socket.py) you can find a complete implementation of a sample socket that directly uses Sequans AT commands.
228
234
229
235
NOTE: The socket to work without limitations, needs custom built Pycom firmware based on the PR https://github.com/pycom/pycom-micropython-sigfox/pull/429 that handles the transmittion of long AT command messages. If the default firmware is used, the COAP message MUST fit within 62 bytes, or else it will fail.
230
236
@@ -241,7 +247,7 @@ client = microcoapy.Coap()
241
247
client.discardRetransmissions =True
242
248
```
243
249
244
-
## Activate / Deactivate debug messages
250
+
## Activate debug messages
245
251
246
252
By default, debug prints in microcoapy are enabled. Though, the user can deactivate the prints per Coap instance:
0 commit comments