X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fjtag%2Fbitbang.h;h=ee2e688f4c95e6e10ef064cb9a3fd6a86c714c87;hp=7049f4353d596cf5be419df26da2cb8cebe3f81a;hb=8b994145b849c40b0a195c3fb332b9770b2f9097;hpb=8b4e882a1630d63bbc9840fa3f968e36b6ac3702 diff --git a/src/jtag/bitbang.h b/src/jtag/bitbang.h index 7049f4353d..ee2e688f4c 100644 --- a/src/jtag/bitbang.h +++ b/src/jtag/bitbang.h @@ -2,6 +2,9 @@ * Copyright (C) 2005 by Dominic Rath * * Dominic.Rath@gmx.de * * * + * Copyright (C) 2007,2008 Øyvind Harboe * + * oyvind.harboe@zylin.com * + * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * @@ -27,6 +30,7 @@ typedef struct bitbang_interface_s int (*read)(void); void (*write)(int tck, int tms, int tdi); void (*reset)(int trst, int srst); + void (*blink)(int on); } bitbang_interface_t; extern bitbang_interface_t *bitbang_interface;