Commit a1c0c2dc authored by Lucas Russo's avatar Lucas Russo

hal/ll_io/ll_io_err.*: add new connection error

parent f1ce3f9b
......@@ -17,7 +17,8 @@ static const char *llio_err [LLIO_ERR_END] =
[LLIO_ERR_FUNC_NOT_IMPL] = "Function not implemented",
[LLIO_ERR_INV_FUNC_PARAM] = "Invalid function parameter",
[LLIO_ERR_SET_ENDP] = "Could not change enpoint (device opened)",
[LLIO_ERR_DEV_CLOSE] = "Could not close device appropriately"
[LLIO_ERR_DEV_CLOSE] = "Could not close device appropriately",
[LLIO_ERR_CONN] = "Could establish connection to endpoint"
};
/* Convert enumeration type to string */
......
......@@ -19,6 +19,7 @@ enum _llio_err_e
LLIO_ERR_INV_FUNC_PARAM, /* Invalid function parameter */
LLIO_ERR_SET_ENDP, /* Could not set endpoint (device already opened)*/
LLIO_ERR_DEV_CLOSE, /* Error closing a device */
LLIO_ERR_CONN, /* Could establish connection to endpoint */
LLIO_ERR_END /* End of enum marker */
};
......
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