X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Ftarget%2Favrt.h;h=3610eb5e325d774508be49d9a6325181d7a2eba4;hb=c779387279e96f37c8049d81284cd07bf7238ac9;hp=02bb00545e8211297757cf3219f6900127c64544;hpb=56504fdd7353732525e34f1e3fbd44346588f979;p=openocd.git diff --git a/src/target/avrt.h b/src/target/avrt.h index 02bb00545e..3610eb5e32 100644 --- a/src/target/avrt.h +++ b/src/target/avrt.h @@ -13,23 +13,25 @@ * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * along with this program. If not, see . * ***************************************************************************/ -#ifndef AVRT_H -#define AVRT_H -#include "jtag.h" +#ifndef OPENOCD_TARGET_AVRT_H +#define OPENOCD_TARGET_AVRT_H -typedef struct mcu_jtag_s -{ - jtag_tap_t *tap; -} mcu_jtag_t; +#include -typedef struct avr_common_s -{ - mcu_jtag_t jtag_info; -} avr_common_t; +struct mcu_jtag { + struct jtag_tap *tap; +}; -#endif /* AVRT_H */ +struct avr_common { + struct mcu_jtag jtag_info; +}; + +int mcu_execute_queue(void); +int avr_jtag_sendinstr(struct jtag_tap *tap, uint8_t *ir_in, uint8_t ir_out); +int avr_jtag_senddat(struct jtag_tap *tap, uint32_t *dr_in, uint32_t dr_out, + int len); + +#endif /* OPENOCD_TARGET_AVRT_H */