2001-01-19 02:46:50 +00:00
|
|
|
/*
|
2003-02-08 04:17:25 +00:00
|
|
|
* avrdude - A Downloader/Uploader for AVR device programmers
|
2003-02-06 19:08:33 +00:00
|
|
|
* Copyright (C) 2000, 2001, 2002, 2003 Brian S. Dean <bsd@bsdhome.com>
|
2001-01-19 02:46:50 +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.
|
2001-01-19 02:46:50 +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.
|
2001-01-19 02:46:50 +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
|
2001-01-19 02:46:50 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifndef __ppi_h__
|
|
|
|
#define __ppi_h__
|
|
|
|
|
2002-11-30 14:09:12 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2003-02-13 19:27:50 +00:00
|
|
|
/*
|
|
|
|
* PPI registers
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
PPIDATA,
|
|
|
|
PPICTRL,
|
|
|
|
PPISTATUS
|
|
|
|
};
|
2002-11-30 14:09:12 +00:00
|
|
|
|
|
|
|
|
2003-02-11 23:50:31 +00:00
|
|
|
#if !defined(ppi_claim)
|
|
|
|
# define ppi_claim(pgm)
|
|
|
|
#endif
|
2002-11-30 14:09:12 +00:00
|
|
|
|
2003-02-11 23:50:31 +00:00
|
|
|
#if !defined(ppi_release)
|
|
|
|
# define ppi_release(pgm)
|
|
|
|
#endif
|
2002-11-30 14:09:12 +00:00
|
|
|
|
2003-02-13 19:27:50 +00:00
|
|
|
int ppi_get (int fd, int reg, int bit);
|
|
|
|
|
|
|
|
int ppi_set (int fd, int reg, int bit);
|
|
|
|
|
|
|
|
int ppi_clr (int fd, int reg, int bit);
|
|
|
|
|
|
|
|
int ppi_getall (int fd, int reg);
|
|
|
|
|
|
|
|
int ppi_setall (int fd, int reg, int val);
|
|
|
|
|
|
|
|
int ppi_toggle (int fd, int reg, int bit);
|
|
|
|
|
|
|
|
int ppi_open (char * port);
|
|
|
|
|
|
|
|
void ppi_close (int fd);
|
|
|
|
|
2001-01-19 02:46:50 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|