Implementation of a new jtag remote_bitbang driver.

The driver sends ascii encoded bitbang commands over unix sockets or TCP to
another process. This driver is useful for debugging software running on
processors which are being simulated.
This commit is contained in:
Richard Uhler
2011-08-25 13:29:33 -07:00
committed by Øyvind Harboe
parent 48e8d2d21c
commit 1411ad11c1
6 changed files with 397 additions and 0 deletions

View File

@@ -97,6 +97,9 @@ extern struct jtag_interface armjtagew_interface;
#if BUILD_BUSPIRATE == 1
extern struct jtag_interface buspirate_interface;
#endif
#if BUILD_REMOTE_BITBANG == 1
extern struct jtag_interface remote_bitbang_interface;
#endif
#endif // standard drivers
/**
@@ -163,6 +166,9 @@ struct jtag_interface *jtag_interfaces[] = {
#if BUILD_BUSPIRATE == 1
&buspirate_interface,
#endif
#if BUILD_REMOTE_BITBANG == 1
&remote_bitbang_interface,
#endif
#endif // standard drivers
NULL,
};