Subversion Repositories shark

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1655 giacomo 1
/*****************************************************************************
2
* Filename:       ADC.H                                                      *
3
* Author:         Ghiro Andrea,Franchino Gianluca                            *
4
* Date:           09/2003                                                    *          
5
* Description:    Analog 2 digital conversion package header file            *
6
*----------------------------------------------------------------------------*
7
* Notes:                                                                     *
8
*****************************************************************************/
9
 
10
/* This file is part of the S.Ha.R.K. Project - http://shark.sssup.it
11
 *
12
 * Copyright (C) 2003 Ghiro Andrea,Franchino Gianluca
13
 *
14
 * This program is free software; you can redistribute it and/or modify
15
 * it under the terms of the GNU General Public License as published by
16
 * the Free Software Foundation; either version 2 of the License, or
17
 * (at your option) any later version.
18
 *
19
 * This program is distributed in the hope that it will be useful,
20
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
 * GNU General Public License for more details.
23
 *
24
 * You should have received a copy of the GNU General Public License
25
 * along with this program; if not, write to the Free Software
26
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
27
 *
28
 */
29
 
30
 
31
#ifndef  _MY_ADC_H_
32
#define  _MY_ADC_H_
33
 
34
#include <drivers/pci6025e/pci6025e.h>
35
#include <drivers/pci6025e/regconst.h>
36
#include "ll/sys/cdefs.h"
37
 
38
__BEGIN_DECLS
39
 
40
//Analog input releted functions
41
void Configure_Board(BYTE);
42
void ADC_Init(void);
43
void AI_Start_The_Acquisition(void);
44
 
45
__END_DECLS
46
#endif
47
/*End of file:    adc.h*/
48