jtag/hla, jtag/stlink: switch to command 'adapter serial'
[fw/openocd] / src / target / avrt.h
index 145f836f1a79496e1ba4d03cbf15895cc1a39bb6..3610eb5e325d774508be49d9a6325181d7a2eba4 100644 (file)
  *   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 <http://www.gnu.org/licenses/>. *
  ***************************************************************************/
-#ifndef AVRT_H
-#define AVRT_H
 
-#include "jtag.h"
+#ifndef OPENOCD_TARGET_AVRT_H
+#define OPENOCD_TARGET_AVRT_H
 
-struct mcu_jtag
-{
+#include <jtag/jtag.h>
+
+struct mcu_jtag {
        struct jtag_tap *tap;
 };
 
-struct avr_common
-{
+struct avr_common {
        struct mcu_jtag jtag_info;
 };
 
-#endif /* AVRT_H */
+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 */