Browse Source

Include ULINK driver in src/jtag/interfaces.c

tags/v0.5.0-rc1
Martin Schmölzer 13 years ago
committed by Øyvind Harboe
parent
commit
f279e54347
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      src/jtag/interfaces.c

+ 6
- 0
src/jtag/interfaces.c View File

@@ -88,6 +88,9 @@ extern struct jtag_interface vsllink_interface;
#if BUILD_RLINK == 1 #if BUILD_RLINK == 1
extern struct jtag_interface rlink_interface; extern struct jtag_interface rlink_interface;
#endif #endif
#if BUILD_ULINK == 1
extern struct jtag_interface ulink_interface;
#endif
#if BUILD_ARMJTAGEW == 1 #if BUILD_ARMJTAGEW == 1
extern struct jtag_interface armjtagew_interface; extern struct jtag_interface armjtagew_interface;
#endif #endif
@@ -151,6 +154,9 @@ struct jtag_interface *jtag_interfaces[] = {
#if BUILD_RLINK == 1 #if BUILD_RLINK == 1
&rlink_interface, &rlink_interface,
#endif #endif
#if BUILD_ULINK == 1
&ulink_interface,
#endif
#if BUILD_ARMJTAGEW == 1 #if BUILD_ARMJTAGEW == 1
&armjtagew_interface, &armjtagew_interface,
#endif #endif


Loading…
Cancel
Save