aboutsummaryrefslogtreecommitdiff
path: root/libjaylink/jtag.c
AgeCommit message (Collapse)AuthorFilesLines
2016-11-15Minor code and documentation cleanupsMarc Schink1-2/+2
Signed-off-by: Marc Schink <jaylink-dev@marcschink.de>
2016-11-13Rename JTAG command version enumsMarc Schink1-3/+3
Signed-off-by: Marc Schink <jaylink-dev@marcschink.de>
2016-10-29Use JAYLINK_ERR_IOMarc Schink1-0/+3
Signed-off-by: Marc Schink <jaylink-dev@marcschink.de>
2016-09-17Use error description in log messagesMarc Schink1-10/+20
Use a human-readable error description rather than just the error code in log messages. Signed-off-by: Marc Schink <jaylink-dev@marcschink.de>
2016-09-09Minor documentation cleanupsMarc Schink1-6/+5
Signed-off-by: Marc Schink <jaylink-dev@marcschink.de>
2016-07-23Minor code cleanupsMarc Schink1-1/+0
Signed-off-by: Marc Schink <jaylink-dev@marcschink.de>
2016-07-17Doxygen: Add @since tagsMarc Schink1-0/+6
Signed-off-by: Marc Schink <jaylink-dev@marcschink.de>
2016-07-08Use JAYLINK_ERR_DEV_NO_MEMORYMarc Schink1-11/+21
Signed-off-by: Marc Schink <jaylink-dev@marcschink.de>
2016-05-15Use enums where appropriateMarc Schink1-4/+2
Signed-off-by: Marc Schink <jaylink-dev@marcschink.de>
2016-04-25Use 'bool' instead of 'int' for boolean valuesMarc Schink1-3/+4
2015-12-22Use spaces instead of tabs in Doxygen commentsMarc Schink1-7/+7
2015-07-23Use JAYLINK_ERR_DEV.Marc Schink1-1/+2
2015-04-02Minor cosmetics and cleanups.Marc Schink1-1/+1
2015-03-23Change license to GPLv2+.Marc Schink1-1/+1
2015-03-02Mark visibility of public API and private functions.Marc Schink1-5/+6
Add macros JAYLINK_API and JAYLINK_PRIV to mark public API and private symbols. JAYLINK_API is used to mark symbols which should be part of the public API whereas JAYLINK_PRIV is used to mark symbols which should be accessible among internal files but not be part of the public API. To prevent symbol leakage all non-static symbols are treated as marked with JAYLINK_PRIV unless explicitly marked with JAYLINK_API. JAYLINK_API and JAYLINK_PRIV use the visibility feature of gcc which requires version 4.0 or greater. See: http://gcc.gnu.org/wiki/Visibility
2015-03-02jtag: Add functions to set/clear the TRST signal.Marc Schink1-2/+82
2015-03-02Add function to perform JTAG I/O operation.Marc Schink1-0/+151