I have mongoose web server working on ethernet and now I need to add wifi interface to same web server, #3346
-
|
Hi, Is this possible in the current version of mongoose library? i.e. running with 2 interfaces, and if yes any pointers will help |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
No, Mongoose only uses one interface. |
Beta Was this translation helpful? Give feedback.
No, Mongoose only uses one interface.
You can have two managers (or more) running, if you enable all needed drivers, that works (we did not intend for that to be done when writing the drivers), and you manually configure each instance for the required driver.
You can use a TCP/IP stack that handles several interfaces, like lwIP of FreeRTOS+TCP or Zephyr or ...
We already have a driver for Murata and RM2 modules.
We already have an AT command driver, the PPP driver. We do not intend to have a proprietary driver nor other type of driver handling anything other than Ethernet or PPP frames. Those drivers will be split and we'll have separate plain AT and PPP drivers soon, as soon as other pri…