summaryrefslogtreecommitdiff
path: root/src/jtag/drivers/minidriver_imp.h
Commit message (Collapse)AuthorAgeFilesLines
* minidriver: fix inline capability of minidriverØyvind Harboe2009-12-081-1/+10
| | | | | | | | | | | Low latency low CPU processing power systems(embedded) will benefit greatly from being able to inline certain jtag_add_xxx() fn's. The trick is that this has to be done in such a way as to allow implementing an OpenOCD API with a shared library(eventually) on a PC hosted OpenOCD. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
* change #include "commands.h" to <jtag/commands.h>Zachary T Welch2009-12-031-1/+1
| | | | | | | | | | | | Changes from the flat namespace to heirarchical one. Instead of writing: #include "commands.h" the following form should be used. #include <jtag/commands.h> The exception is from .c files in the same directory.
* remove #if HAVE_JTAG_INTERFACE_H from minidriver.hZachary T Welch2009-12-021-0/+47
Adds two "minidriver_imp.h" files, so the right one is allowed to be "#included" by the Makefile logic.