mirror of
https://github.com/avrdudes/avrdude.git
synced 2026-08-02 22:54:00 +03:00
imposed by debugWire itself, so effectively, only flash ROM can be read and written. Currently, the required changes to avrdude.conf.in are only present for the ATtiny44. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@688 81a1dc3b-b13d-400b-aceb-764788c761c2
39 lines
1.4 KiB
C
39 lines
1.4 KiB
C
/*
|
|
* avrdude - A Downloader/Uploader for AVR device programmers
|
|
* Copyright (C) 2002-2004, 2006 Brian S. Dean <bsd@bsdhome.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* 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
|
|
*/
|
|
|
|
/* $Id$ */
|
|
|
|
#ifndef jtagmkII_h
|
|
#define jtagmkII_h
|
|
|
|
int jtagmkII_send(PROGRAMMER * pgm, unsigned char * data, size_t len);
|
|
int jtagmkII_recv(PROGRAMMER * pgm, unsigned char **msg);
|
|
void jtagmkII_close(PROGRAMMER * pgm);
|
|
int jtagmkII_getsync(PROGRAMMER * pgm, int mode);
|
|
int jtagmkII_getparm(PROGRAMMER * pgm, unsigned char parm,
|
|
unsigned char * value);
|
|
|
|
void jtagmkII_initpgm (PROGRAMMER * pgm);
|
|
void jtagmkII_dw_initpgm (PROGRAMMER * pgm);
|
|
void jtagmkII_dragon_initpgm (PROGRAMMER * pgm);
|
|
void jtagmkII_dragon_dw_initpgm (PROGRAMMER * pgm);
|
|
|
|
#endif
|
|
|