Jean:
> wiggler2.c looks the shortest to me, so go for that one. You'll only
> have to change the #define lines that defines the pins used in the COM
> port.
Thank you, I'll do so.
So I cp wiggler2.c aspo.c, and changed wiggler2 -> aspo in the file,
and did the other things to get it to compile etc., see attachment.
But how do I update po/urjtag.pot ?
Regards,
/Karl Hammar
diff --git a/urjtag/MAINTAINERS b/urjtag/MAINTAINERS
index 7caa5157..61c7955c 100644
--- a/urjtag/MAINTAINERS
+++ b/urjtag/MAINTAINERS
@@ -43,6 +43,11 @@ ARCOM CABLE DRIVER
F: src/tap/cable/arcom.c
S: Orphan
+ASPO CABLE DRIVER
+M: Karl Hammar <karl at aspodata.se>
+F: src/tap/cable/aspo.c
+S: Tested
+
AU1500 BUS DRIVER
F: src/bus/au1500.c
S: Orphan
diff --git a/urjtag/configure.ac b/urjtag/configure.ac
index c87b2385..ff9dfba6 100644
--- a/urjtag/configure.ac
+++ b/urjtag/configure.ac
@@ -655,6 +655,7 @@ URJ_DRIVER_SET([bus], [
# Enable cable drivers
URJ_DRIVER_SET([cable], [
arcom
+ aspo
byteblaster
dirtyjtag
dlc5
diff --git a/urjtag/doc/UrJTAG.txt b/urjtag/doc/UrJTAG.txt
index 94f32c3b..366c0a7b 100644
--- a/urjtag/doc/UrJTAG.txt
+++ b/urjtag/doc/UrJTAG.txt
@@ -206,6 +206,7 @@ See 'help cable' command for up-to-date info.
Parallel-port cables:
* Arcom JTAG Cable
+ * Aspo JTAG Cable (experimental)
http://aspodata.se/git/openhw/boards_other/isp/ pp_jtag_arm20.{sch,pcb}
* Altera ByteBlaster/ByteBlaster II/ByteBlasterMV Parallel Port Download Cable
* Xilinx DLC5 JTAG Parallel Cable III
* ETC EA253 JTAG Cable
diff --git a/urjtag/po/POTFILES.in b/urjtag/po/POTFILES.in
index 05e0c444..c2dceed1 100644
--- a/urjtag/po/POTFILES.in
+++ b/urjtag/po/POTFILES.in
@@ -107,6 +107,7 @@ src/svf/svf_bison.y
src/svf/svf.c
src/svf/svf_flex.l
src/tap/cable/arcom.c
+src/tap/cable/aspo.c
src/tap/cable/byteblaster.c
src/tap/cable.c
src/tap/cable/dlc5.c
diff --git a/urjtag/src/tap/Makefile.am b/urjtag/src/tap/Makefile.am
index 3f94f191..9917b2b5 100644
--- a/urjtag/src/tap/Makefile.am
+++ b/urjtag/src/tap/Makefile.am
@@ -57,6 +57,11 @@ libtap_la_SOURCES += \
cable/arcom.c
endif
+if ENABLE_CABLE_ASPO
+libtap_la_SOURCES += \
+ cable/aspo.c
+endif
+
if ENABLE_CABLE_BYTEBLASTER
libtap_la_SOURCES += \
cable/byteblaster.c
diff --git a/urjtag/src/tap/cable_list.h b/urjtag/src/tap/cable_list.h
index b321901c..a1e91ae0 100644
--- a/urjtag/src/tap/cable_list.h
+++ b/urjtag/src/tap/cable_list.h
@@ -30,6 +30,9 @@
#ifdef ENABLE_CABLE_ARCOM
_URJ_CABLE(arcom)
#endif
+#ifdef ENABLE_CABLE_ASPO
+_URJ_CABLE(aspo)
+#endif
#ifdef ENABLE_CABLE_BYTEBLASTER
_URJ_CABLE(byteblaster)
#endif
_______________________________________________
UrJTAG-development mailing list
UrJTAG-development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/urjtag-development