forked from smurfix/wago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kbusapi.c
137 lines (118 loc) · 4.18 KB
/
kbusapi.c
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#ifndef DEMO
/*
This file is a copy of the kbus API interface from the wagokbusdemo
example code from the WAGO software distribution.
*/
//
// -----------------------------------------------------------------------------
// | WAGO Kontakttechnik GmbH & Co. KG | |
// | Hansastr. 27 | Technical Support |
// | D-32423 Minden | |
// | Tel.: +49(0)571 / 887 - 0 | Tel.: +49(0)571 / 887 - 555 |
// | Fax.: +49(0)571 / 887 - 169 | Fax.: +49(0)571 / 887 - 8555 |
// | Mail: info@wago.com | Mail: support@wago.com |
// | www : http://www.wago.com | |
// -----------------------------------------------------------------------------
/// \file wagoset.c
/// \version 0.02
/// \date 18-MAY-2006
/// \author Florian Reckmann
///
/// \description :
/// This programm set the configuration of the Fieldbus-Controller in the Flash
/// The Flash is reading from the Bootloader if it start the Linux-Kernel
///
/// \par History:
/// \history 01.12.2004 Init(LF)
///
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <stdio.h>
#include <asm/types.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include "kbusapi.h"
volatile T_PabVarUnion * pstPabOUT = PABOUT;
volatile T_PabVarUnion * pstPabIN = PABIN;
int iFD = -1;
#if 0 // not used
static void modifyPABforEffect(void)
{
pstPabOUT->us.Pab[0] = pstPabOUT->us.Pab[0] << 1;
if(pstPabOUT->us.Pab[0] > 0xFFF) pstPabOUT->us.Pab[0] = 1;
return;
}
#endif
// -------------------------------------------------------------------------------
/// Oeffnet einen Kanal zum Kbus-Treiber und initialisert die Bibliothek.
/// \retval 0 Kbus-Schnittstelle bereit
/// \retval EACCES Kein Zugriff auf /dev/kbus moeglich
/// \retval ENODEV /dev/kbus existiert nicht auf dem Dateisystem
/// \retval ENOMEM nicht genug Speicher verfuegbar
/// \retval EMFILE zuviele Dateien auf dem System bereits geoeffnet
/// \retval EIO low-level IO Fehler
// -------------------------------------------------------------------------------
int KbusOpen()
{
iFD = open("/dev/kbus", O_WRONLY);
if(iFD < 0) {
printf("KBUSAPI: Failed opening fifo for writing: %s", strerror(errno));
return -errno;
}
return 0;
}
// -------------------------------------------------------------------------------
/// Aktualisiert Prozessdaten und Prozessabbild. Kann nur nach KbusOpen()
/// aufgerufen werden.
/// \retval 0 Aktualisierungsnachricht erfolgreich gesendet
/// \retval EINVAL Kanal zum Kbus wurde noch nicht oder fehlerhaft geoeffnet
// -------------------------------------------------------------------------------
int KbusUpdate()
{
int iBytes=0;
int iTmp;
if(iFD < 0) return -EINVAL;
iBytes = ioctl(iFD, IOCTL_KBUSUPDATE, &iTmp);
if (iBytes < 0)
return -errno;
return 0;
}
// -------------------------------------------------------------------------------
// -------------------------------------------------------------------------------
int KbusGetBinaryInputOffset()
{
int iBytes = 0;
int iInputOffset = 0;
if(iFD < 0) return -EINVAL;
iBytes = ioctl(iFD, IOCTL_GETBININPUTOFFSET, &iInputOffset);
if (iBytes < 0)
return -errno;
return iInputOffset;
}
// -------------------------------------------------------------------------------
// -------------------------------------------------------------------------------
int KbusGetBinaryOutputOffset()
{
int iBytes = 0;
int iOutputOffset = 0;
if(iFD < 0) return -EINVAL;
iBytes = ioctl(iFD, IOCTL_GETBINOUTPUTOFFSET, &iOutputOffset);
if (iBytes < 0)
return -errno;
return iOutputOffset;
}
// -------------------------------------------------------------------------------
/// Schliesst den Kanal zum Kbus und gibt allozierte Resourcen wieder frei.
/// \retval 0 Kanal geschlossen
/// \retval EINVAL Kbus-Kanal war nicht (erfolgreich) geoeffnet
// -------------------------------------------------------------------------------
int KbusClose()
{
/* Close /dev/kbus */
close(iFD);
iFD = -1;
return 0;
}
#endif