Anyone has tried it?
How can I assign an address to the devices in order to comunicate?
I suspect is on "mesh" data structure, but it isn't not writen or initialized.
... in "mes.h" there is a def like this
struct mesh_conn {
struct multihop_conn multihop;
struct route_discovery_conn route_discovery_conn;
struct queuebuf *queued_data;
linkaddr_t queued_data_dest;
const struct mesh_callbacks *cb;
};
which is declared as
static struct mesh_conn mesh;
Or maybe is generated by the function "mesh_open(&mesh, 132, &callbacks);"
I've found this doxygen doc (contiki.sourceforge.net/.../a01798.html) where is "The Rime communication stack" section but I'll apreciate any other source of info.