update files to correct FSF address
[fw/openocd] / src / target / avrt.h
index e840aaf96c24cc92d3094ebcccfbea15fb430d49..707b481609e3cd14c3f1d87ec2597bd1a1a04bf7 100644 (file)
  *   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
 
-typedef struct mcu_jtag_s
-{
-       jtag_tap_t *tap;
-} mcu_jtag_t;
+#include <jtag/jtag.h>
+
+struct mcu_jtag {
+       struct jtag_tap *tap;
+};
+
+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 */