arm_adi_v5: mem_ap_write error propagation
[fw/openocd] / src / target / avrt.h
index e840aaf96c24cc92d3094ebcccfbea15fb430d49..221f9240e2049d645697eef51866a1f093530d50 100644 (file)
 #ifndef AVRT_H
 #define AVRT_H
 
-typedef struct mcu_jtag_s
+#include <jtag/jtag.h>
+
+struct mcu_jtag
 {
-       jtag_tap_t *tap;
-} mcu_jtag_t;
+       struct jtag_tap *tap;
+};
 
-typedef struct avr_common_s
+struct avr_common
 {
-       mcu_jtag_t jtag_info;
-} avr_common_t;
+       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 */