X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Ftarget%2Favrt.h;h=707b481609e3cd14c3f1d87ec2597bd1a1a04bf7;hb=3a8a6e5c3e43bbe543bc7a0a7503173e4eadf2bc;hp=54722ac6ba16579bbe3fe1b0eb3580f238140783;hpb=4bc80e5a65dde09ca795e50e77bcfe77b8dd444f;p=openocd.git diff --git a/src/target/avrt.h b/src/target/avrt.h index 54722ac6ba..707b481609 100644 --- a/src/target/avrt.h +++ b/src/target/avrt.h @@ -15,21 +15,25 @@ * 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. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * ***************************************************************************/ + #ifndef AVRT_H #define AVRT_H -#include "jtag.h" +#include -struct mcu_jtag -{ +struct mcu_jtag { struct jtag_tap *tap; }; -typedef struct avr_common_s -{ +struct avr_common { struct mcu_jtag jtag_info; -} avr_common_t; +}; + +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 */