I have a working Loriot application.
If I update libmDot to the last version (14:121e4c454964), I need to do that to get new sleep functionality, my application starts to fail joining the network (error -4).
If I revert to old libmDot (10:0b4eb17d07ae) join works ok.
while ((ret = dot->joinNetwork()) != mDot::MDOT_OK) {
serial.printf("ERROR: failed to join network %d:%s\n\r", ret, mDot::getReturnCodeString(ret).c_str());
osDelay(10000);
}
Prints
ERROR: failed to join network -4:Join Error
Where can I find documentation about libmDot changes?