feat(modem): Support custom transport in AT TCP client example

This commit is contained in:
David Cermak
2023-06-19 23:28:17 +02:00
parent 42fe60828f
commit ae629ed3a9
17 changed files with 602 additions and 38 deletions

View File

@ -5,6 +5,10 @@
## Overview
This example demonstrates how to act as a MQTT client using modem's TCP commands (provided, the device supports "socket" related commands)
This example could be used in two different configurations:
1) Custom TCP transport: Implements a TCP transport in form of AT commands and uses it as custom transport for mqtt client.
2) Localhost listener: Uses standard transports to connect and forwards socket layer data from the client to the modem using AT commands.
### Supported IDF versions
This example is supported from IDF `v4.4`.
This example is supported from IDF `v5.0`.