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
The current implementation do not support InfluxDB 2.0 Cloud API. Also the InfluxDB-Client-for-Arduino implementation is too heavy for MCU to be implemented.
Solution
No response
Alternatives
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
Main requirement seems to be a TLS-enabled client. We run into a couple of problems, regardless of whether we use the lib mentioned above or try to use any available TLS lib (bearssl, wolfssl, etc.)
ESP needs to run in 160MHZ mode, which is enforced at build time in the currently used SDK; changing it at runtime will always fallback to the build value
connection buffers need to be around 18KiB at a minimum, 32KiB at a maximum (created per connection); plus ~7KiB of extra task stack that is used to run crypto stuff (shared between clients). we need to severely limit everything else with access to RAM, otherwise we will run out of available RAM at some point (since we have only ~40...50KiB available after booting)
We could reduce required RAM with MFLN extension, but Go implementation does not support it (yet?)
Description
The current implementation do not support InfluxDB 2.0 Cloud API. Also the InfluxDB-Client-for-Arduino implementation is too heavy for MCU to be implemented.
Solution
No response
Alternatives
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: