jaylink_error is only used within OpenOCD.
 
Symbols
loading...
Files
loading...

jaylink_error enum

@file Public libjaylink header file to be used by applications. Error codes returned by libjaylink functions.

Syntax

enum jaylink_error {     JAYLINK_OK = 0,     JAYLINK_ERR = -1,     JAYLINK_ERR_ARG = -2,     JAYLINK_ERR_MALLOC = -3,     JAYLINK_ERR_TIMEOUT = -4,     JAYLINK_ERR_PROTO = -5,     JAYLINK_ERR_NOT_AVAILABLE = -6,     JAYLINK_ERR_NOT_SUPPORTED = -7,     JAYLINK_ERR_IO = -8,     JAYLINK_ERR_DEV = -1000,     JAYLINK_ERR_DEV_NOT_SUPPORTED = -1001,     JAYLINK_ERR_DEV_NOT_AVAILABLE = -1002,     JAYLINK_ERR_DEV_NO_MEMORY = -1003 };

Values

No error. Read more...
Unspecified error. Read more...
Invalid argument. Read more...
Memory allocation error. Read more...
Timeout occurred. Read more...
Protocol violation. Read more...
Entity not available. Read more...
Operation not supported. Read more...
Input/output error. Read more...
Device: unspecified error. Read more...
Device: operation not supported. Read more...
Device: entity not available. Read more...
Device: not enough memory to perform operation. Read more...

References

LocationText
libjaylink.h:44
enum jaylink_error {