X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Ftarget%2Favrt.h;h=076fddbf123a0aed44de59ba5dd881941eb8715c;hb=f1e9cef4101a6c9aba2eb65ec99404b44a5a00fc;hp=145f836f1a79496e1ba4d03cbf15895cc1a39bb6;hpb=e7f65c5a116802c4e510fe212b26e9a020de0b3e;p=openocd.git diff --git a/src/target/avrt.h b/src/target/avrt.h index 145f836f1a..076fddbf12 100644 --- a/src/target/avrt.h +++ b/src/target/avrt.h @@ -17,19 +17,23 @@ * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ + #ifndef AVRT_H #define AVRT_H -#include "jtag.h" +#include -struct mcu_jtag -{ +struct mcu_jtag { struct jtag_tap *tap; }; -struct avr_common -{ +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 /* AVRT_H */