413
|
1 |
/*
|
|
2 |
This file is part of CanFestival, a library implementing CanOpen Stack.
|
|
3 |
|
|
4 |
Copyright (C): Andreas GLAUSER
|
|
5 |
|
|
6 |
See COPYING file for copyrights details.
|
|
7 |
|
|
8 |
This library is free software; you can redistribute it and/or
|
|
9 |
modify it under the terms of the GNU Lesser General Public
|
|
10 |
License as published by the Free Software Foundation; either
|
|
11 |
version 2.1 of the License, or (at your option) any later version.
|
|
12 |
|
|
13 |
This library is distributed in the hope that it will be useful,
|
|
14 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
16 |
Lesser General Public License for more details.
|
|
17 |
|
|
18 |
You should have received a copy of the GNU Lesser General Public
|
|
19 |
License along with this library; if not, write to the Free Software
|
|
20 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
21 |
*/
|
|
22 |
|
|
23 |
// DS 401 Digital IO handling according DS 401 V2.1 "Device Profile for Generic I/O Modules"
|
|
24 |
|
|
25 |
#ifndef __DS_401_h__
|
|
26 |
#define __DS_401_h__
|
|
27 |
|
|
28 |
// Includes for the Canfestival
|
|
29 |
#include "canfestival.h"
|
|
30 |
#include "timer.h"
|
|
31 |
#include "objdict.h"
|
|
32 |
|
|
33 |
|
|
34 |
unsigned char digital_input_handler(CO_Data* d, unsigned char *newInput, unsigned char size);
|
|
35 |
|
|
36 |
unsigned char digital_output_handler(CO_Data* d, unsigned char *newOuput, unsigned char size);
|
|
37 |
|
|
38 |
unsigned char analog_input_handler(CO_Data* d, unsigned int *newInput, unsigned char size);
|
|
39 |
|
|
40 |
unsigned char analog_output_handler(CO_Data* d, unsigned int *newOutput, unsigned char size);
|
|
41 |
|
|
42 |
#endif //__DS_401_h__
|