2002-12-01 04:30:01 +00:00
|
|
|
/*
|
2003-02-08 04:17:25 +00:00
|
|
|
* avrdude - A Downloader/Uploader for AVR device programmers
|
2004-12-22 01:52:45 +00:00
|
|
|
* Copyright (C) 2002-2004 Brian S. Dean <bsd@bsdhome.com>
|
2002-12-01 04:30:01 +00:00
|
|
|
*
|
2003-02-06 19:08:33 +00:00
|
|
|
* 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.
|
2002-12-01 04:30:01 +00:00
|
|
|
*
|
2003-02-06 19:08:33 +00:00
|
|
|
* 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.
|
2002-12-01 04:30:01 +00:00
|
|
|
*
|
2003-02-06 19:08:33 +00:00
|
|
|
* 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
|
2002-12-01 04:30:01 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2007-01-24 22:43:46 +00:00
|
|
|
#ifndef stk500_h
|
|
|
|
#define stk500_h
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2002-12-01 04:30:01 +00:00
|
|
|
|
|
|
|
void stk500_initpgm (PROGRAMMER * pgm);
|
|
|
|
|
2009-10-10 01:41:40 +00:00
|
|
|
/* used by arduino.c to avoid duplicate code */
|
|
|
|
int stk500_getsync(PROGRAMMER * pgm);
|
|
|
|
int stk500_drain(PROGRAMMER * pgm, int display);
|
|
|
|
|
2007-01-24 22:43:46 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-12-01 04:30:01 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|