jeremypoulter / ArduinoMongoose

A wrapper for Mongoose to help build into Arduino framework
24 stars 15 forks source link

Cellular modem support #23

Open Jerar opened 1 year ago

Jerar commented 1 year ago

Hi, I was looking for cellular connectivity in addition to Wifi and ETH, smt. like TinyGSM can support quite a lot of modems. Any suggestions where to start?

jeremypoulter commented 1 year ago

This library just sits on top of the IP stack, the actual transport should be independent. So just start the GSM modem as indicated in the examples and mongoose can be started up after connected

Jerar commented 1 year ago

Thank you for the input, needed a second opinion :)

egnor commented 2 weeks ago

Doesn't this adaptation of Mongoose use Berkeley sockets (as for example provided by lwip under ESP-IDF) as "the IP stack"? In that case TinyGSM will not work, not even close, as it provides only the Arduino client interface, and a fairly limited version of that.

(But probably I misunderstand something here?)