ioutil: make the file compile on MacOS
[fw/openocd] / src / target / avrt.h
index 02bb00545e8211297757cf3219f6900127c64544..076fddbf123a0aed44de59ba5dd881941eb8715c 100644 (file)
  *   Free Software Foundation, Inc.,                                       *
  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  ***************************************************************************/
+
 #ifndef AVRT_H
 #define AVRT_H
 
-#include "jtag.h"
+#include <jtag/jtag.h>
+
+struct mcu_jtag {
+       struct jtag_tap *tap;
+};
 
-typedef struct mcu_jtag_s
-{
-       jtag_tap_t *tap;
-} mcu_jtag_t;
+struct avr_common {
+       struct mcu_jtag jtag_info;
+};
 
-typedef struct avr_common_s
-{
-       mcu_jtag_t 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 */