c-jimenez/open-ocpp

can I use open-ocpp library for embedded usage for example STM32?

adithyagurumurthy opened this issue · 1 comments

can I use open-ocpp library for embedded usage for example STM32?

Not in the current implementation state.

To be able to port the library to an embedded microcontroller, you will have to implement :

  • a new websocket layer which is not based on libwesockets/openssl
  • a database layer which is not based on SQLite

The other parts of the library are pure standard C++ so it won't cause much problem except perhaps for dynamic memory allocations which will need a sufficient heap size configured.

I'll be happy to integrate your work if you make it run on an embedded target :)