File: avrpp.h

package info (click to toggle)
avrprog 0.2.1-10
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 368 kB
  • ctags: 85
  • sloc: ansic: 989; makefile: 60; sh: 38
file content (61 lines) | stat: -rw-r--r-- 1,742 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
Copyright (C) 2000-2001 Jos Roberto B. de A. Monteiro <jrm@autsens.com>
                        and Pedro Zorzenon Neto <pzn@autsens.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.
*/

#ifndef _AVRPP_H
#define _AVRPP_H

/*
  This object represents a single bit in parallel port
*/

struct reg_pp {
  unsigned short base;
  int offset;
  int row;
};

struct reg_pp * rpp_new();
struct reg_pp * rpp_init(struct reg_pp * reg,
			 unsigned short base, int offset, int row);
void rpp_delete(struct reg_pp * reg);

void rpp_set(struct reg_pp * reg);
void rpp_clear(struct reg_pp * reg);
void rpp_write(struct reg_pp * reg, int data);
unsigned char rpp_read(struct reg_pp * reg);

/*
  Object that contains all bits of control for a parallel port
*/
struct avr_serial_pp {
  struct reg_pp *NSCK, *NMISO, *MOSI, *RESET;
};

typedef struct avr_serial_pp ASPP;

ASPP * aspp_new();
ASPP * aspp_init(ASPP *aspp, unsigned short base);
void aspp_delete(ASPP *aspp);

void aspp_SCK(ASPP *aspp, int data);
void aspp_RESET(ASPP *aspp, int data);
void aspp_MOSI(ASPP *aspp, int data);
int aspp_MISO(ASPP *aspp);

#endif