Commit 0e065906 authored by Lucas Russo's avatar Lucas Russo

src/dev_io/dev_io.c: sleep for DEVIO CFG to initialize

We need to wait a little after creating DEVIO
CFG. Without that, malamute does not seem to
transmit the liblcient messages after the DEVIO
CFg is created. To be investigated, but this
simple fix works.
parent 692bbf39
......@@ -278,9 +278,11 @@ int main (int argc, char *argv[])
"DEVIO Config instance\n");
goto err_exit;
}
}
/* FIXME: Wait for DEVIO CFG initialization. If we try to create a client instance
* prior to DEVIO CFG creation, Malamute does not transmit the message (To be investigated) */
sleep (2);
}
/* FE DEVIO is expected to have a correct dev_id. So, we don't need to get it
* from Hardware */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment