Hello, I've been experimenting to build ZeroMQ work with NuttX and I wanted to share my results so far.
TLDR: it works Please, understand that I am very new to NuttX so please tell me with any conceptual errors I might be facing! https://github.com/casaroli/incubator-nuttx/tree/zeromq I think we need to be able to use this library both from kernel code and from applications, so I guessed this would fit along libxx and libdsp, etc. So I basically copied many stuff from those directories into libs/libzmq Still needs a lot of work, so next steps are to find a way to run the tests, then to make platform.hpp defines use nuttx/config.h, add czmq (higher level interface). However, in the current state, I could get IPC through Unix Domain Sockets and TCP. inproc also works fine. I wrote some simple examples (not on the repo) and they work. I want to know if anyone else is interested in helping with this (make ZeroMQ/czmq, nng, etc. work). Thank you.