Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
ecefd771
Commit
ecefd771
authored
Oct 08, 2007
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ChanId with Diag_ prefix feches value from diagnostic area
parent
f83e0fac
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
111 additions
and
7 deletions
+111
-7
profibus/lib/rt/src/os_linux/rt_io_m_pb_dp_slave.c
profibus/lib/rt/src/os_linux/rt_io_m_pb_dp_slave.c
+39
-2
profibus/lib/rt/src/os_linux/rt_io_m_pb_module.c
profibus/lib/rt/src/os_linux/rt_io_m_pb_module.c
+69
-4
profibus/lib/rt/src/os_linux/rt_io_pb_locals.h
profibus/lib/rt/src/os_linux/rt_io_pb_locals.h
+3
-1
No files found.
profibus/lib/rt/src/os_linux/rt_io_m_pb_dp_slave.c
View file @
ecefd771
/*
/*
* Proview $Id: rt_io_m_pb_dp_slave.c,v 1.
7 2007-04-30 09:41:31
claes Exp $
* Proview $Id: rt_io_m_pb_dp_slave.c,v 1.
8 2007-10-08 13:43:10
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
* Copyright (C) 2005 SSAB Oxelsund AB.
*
*
* This program is free software; you can redistribute it and/or
* This program is free software; you can redistribute it and/or
...
@@ -50,6 +50,29 @@
...
@@ -50,6 +50,29 @@
#include "rt_io_profiboard.h"
#include "rt_io_profiboard.h"
#include "rt_pb_msg.h"
#include "rt_pb_msg.h"
/* Check if channel should be fetched from diagnostic area,
i.e. channel name starts with "Diag_" */
static
int
is_diag
(
pwr_tAttrRef
*
aref
)
{
pwr_tStatus
sts
;
pwr_tOName
name
;
char
*
s
;
sts
=
gdh_AttrrefToName
(
aref
,
name
,
sizeof
(
name
),
cdh_mName_object
|
cdh_mName_attribute
);
if
(
EVEN
(
sts
))
return
0
;
if
(
(
s
=
strrchr
(
name
,
'.'
)))
{
if
(
strncmp
(
s
+
1
,
"Diag_"
,
5
)
==
0
)
return
1
;
}
else
if
(
strncmp
(
name
,
"Diag_"
,
5
)
==
0
)
return
1
;
return
0
;
}
pwr_tInt32
GetChanSize
(
pwr_eDataRepEnum
rep
)
pwr_tInt32
GetChanSize
(
pwr_eDataRepEnum
rep
)
{
{
switch
(
rep
)
{
switch
(
rep
)
{
...
@@ -82,6 +105,7 @@ pwr_tInt32 GetChanSize(pwr_eDataRepEnum rep)
...
@@ -82,6 +105,7 @@ pwr_tInt32 GetChanSize(pwr_eDataRepEnum rep)
/*----------------------------------------------------------------------------*\
/*----------------------------------------------------------------------------*\
Init method for the Pb DP slave
Init method for the Pb DP slave
\*----------------------------------------------------------------------------*/
\*----------------------------------------------------------------------------*/
static
pwr_tStatus
IoRackInit
(
static
pwr_tStatus
IoRackInit
(
io_tCtx
ctx
,
io_tCtx
ctx
,
io_sAgent
*
ap
,
io_sAgent
*
ap
,
...
@@ -203,7 +227,20 @@ static pwr_tStatus IoRackInit (
...
@@ -203,7 +227,20 @@ static pwr_tStatus IoRackInit (
cardp
->
offset
=
0
;
cardp
->
offset
=
0
;
for
(
i
=
0
;
i
<
cardp
->
ChanListSize
;
i
++
)
{
for
(
i
=
0
;
i
<
cardp
->
ChanListSize
;
i
++
)
{
chanp
=
&
cardp
->
chanlist
[
i
];
chanp
=
&
cardp
->
chanlist
[
i
];
if
(
is_diag
(
&
chanp
->
ChanAref
))
{
chanp
->
udata
|=
PB_UDATA_DIAG
;
switch
(
chanp
->
ChanClass
)
{
case
pwr_cClass_ChanIi
:
chanp
->
offset
=
((
pwr_sClass_ChanIi
*
)
chanp
)
->
Number
;
chanp
->
size
=
GetChanSize
(
((
pwr_sClass_ChanIi
*
)
chanp
)
->
Representation
);
break
;
default:
errh_Error
(
"Diagnostic channel class, card %s"
,
cardp
->
Name
);
}
continue
;
}
if
(
chanp
->
ChanClass
!=
pwr_cClass_ChanDi
)
{
if
(
chanp
->
ChanClass
!=
pwr_cClass_ChanDi
)
{
input_counter
+=
latent_input_count
;
input_counter
+=
latent_input_count
;
latent_input_count
=
0
;
latent_input_count
=
0
;
...
...
profibus/lib/rt/src/os_linux/rt_io_m_pb_module.c
View file @
ecefd771
/*
/*
* Proview $Id: rt_io_m_pb_module.c,v 1.
7 2007-04-30 10:59:56
claes Exp $
* Proview $Id: rt_io_m_pb_module.c,v 1.
8 2007-10-08 13:43:10
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
* Copyright (C) 2005 SSAB Oxelsund AB.
*
*
* This program is free software; you can redistribute it and/or
* This program is free software; you can redistribute it and/or
...
@@ -307,7 +307,9 @@ static pwr_tStatus IoCardRead (
...
@@ -307,7 +307,9 @@ static pwr_tStatus IoCardRead (
chan_ii
=
(
pwr_sClass_ChanIi
*
)
chanp
->
cop
;
chan_ii
=
(
pwr_sClass_ChanIi
*
)
chanp
->
cop
;
sig_ii
=
(
pwr_sClass_Ii
*
)
chanp
->
sop
;
sig_ii
=
(
pwr_sClass_Ii
*
)
chanp
->
sop
;
if
(
chan_ii
&&
sig_ii
)
{
if
(
chan_ii
&&
sig_ii
)
{
switch
(
chan_ii
->
Representation
)
{
if
(
(
chanp
->
udata
&
PB_UDATA_DIAG
)
==
0
)
{
/* Fetch data from input area */
switch
(
chan_ii
->
Representation
)
{
case
pwr_eDataRepEnum_Int8
:
case
pwr_eDataRepEnum_Int8
:
memcpy
(
&
data8
,
local
->
input_area
+
cp
->
offset
+
chanp
->
offset
,
1
);
memcpy
(
&
data8
,
local
->
input_area
+
cp
->
offset
+
chanp
->
offset
,
1
);
...
@@ -318,7 +320,7 @@ static pwr_tStatus IoCardRead (
...
@@ -318,7 +320,7 @@ static pwr_tStatus IoCardRead (
memcpy
(
&
udata8
,
local
->
input_area
+
cp
->
offset
+
chanp
->
offset
,
1
);
memcpy
(
&
udata8
,
local
->
input_area
+
cp
->
offset
+
chanp
->
offset
,
1
);
*
(
pwr_tInt32
*
)
chanp
->
vbp
=
(
pwr_tInt32
)
udata8
;
*
(
pwr_tInt32
*
)
chanp
->
vbp
=
(
pwr_tInt32
)
udata8
;
break
;
break
;
case
pwr_eDataRepEnum_Int16
:
case
pwr_eDataRepEnum_Int16
:
memcpy
(
&
data16
,
local
->
input_area
+
cp
->
offset
+
chanp
->
offset
,
2
);
memcpy
(
&
data16
,
local
->
input_area
+
cp
->
offset
+
chanp
->
offset
,
2
);
if
(
slave
->
ByteOrdering
==
pwr_eByteOrdering_BigEndian
)
data16
=
swap16
(
data16
);
if
(
slave
->
ByteOrdering
==
pwr_eByteOrdering_BigEndian
)
data16
=
swap16
(
data16
);
...
@@ -363,7 +365,70 @@ static pwr_tStatus IoCardRead (
...
@@ -363,7 +365,70 @@ static pwr_tStatus IoCardRead (
*
(
pwr_tInt32
*
)
chanp
->
vbp
=
(
pwr_tInt32
)
udata32
;
*
(
pwr_tInt32
*
)
chanp
->
vbp
=
(
pwr_tInt32
)
udata32
;
break
;
break
;
}
}
}
else
{
/* Fetch value from diagnostic area */
pwr_tUInt8
*
diag_area
=
((
pwr_sClass_Pb_DP_Slave
*
)
rp
->
op
)
->
Diag
;
switch
(
chan_ii
->
Representation
)
{
case
pwr_eDataRepEnum_Int8
:
memcpy
(
&
data8
,
diag_area
+
chanp
->
offset
,
1
);
*
(
pwr_tInt32
*
)
chanp
->
vbp
=
(
pwr_tInt32
)
data8
;
break
;
case
pwr_eDataRepEnum_UInt8
:
memcpy
(
&
udata8
,
diag_area
+
chanp
->
offset
,
1
);
*
(
pwr_tInt32
*
)
chanp
->
vbp
=
(
pwr_tInt32
)
udata8
;
break
;
case
pwr_eDataRepEnum_Int16
:
memcpy
(
&
data16
,
diag_area
+
chanp
->
offset
,
2
);
if
(
slave
->
ByteOrdering
==
pwr_eByteOrdering_BigEndian
)
data16
=
swap16
(
data16
);
*
(
pwr_tInt32
*
)
chanp
->
vbp
=
(
pwr_tInt32
)
data16
;
break
;
case
pwr_eDataRepEnum_UInt16
:
memcpy
(
&
udata16
,
diag_area
+
chanp
->
offset
,
2
);
if
(
slave
->
ByteOrdering
==
pwr_eByteOrdering_BigEndian
)
udata16
=
swap16
(
udata16
);
*
(
pwr_tInt32
*
)
chanp
->
vbp
=
(
pwr_tInt32
)
udata16
;
break
;
case
pwr_eDataRepEnum_Int24
:
data32
=
0
;
memcpy
(
&
data32
,
diag_area
+
chanp
->
offset
,
3
);
if
(
slave
->
ByteOrdering
==
pwr_eByteOrdering_BigEndian
)
{
data32
=
swap32
(
data32
);
data32
=
data32
>>
8
;
}
*
(
pwr_tInt32
*
)
chanp
->
vbp
=
(
pwr_tInt32
)
data32
;
break
;
case
pwr_eDataRepEnum_UInt24
:
udata32
=
0
;
memcpy
(
&
udata32
,
diag_area
+
chanp
->
offset
,
3
);
if
(
slave
->
ByteOrdering
==
pwr_eByteOrdering_BigEndian
)
{
udata32
=
swap32
(
udata32
);
udata32
=
udata32
>>
8
;
}
*
(
pwr_tInt32
*
)
chanp
->
vbp
=
(
pwr_tInt32
)
udata32
;
break
;
case
pwr_eDataRepEnum_Int32
:
memcpy
(
&
data32
,
diag_area
+
chanp
->
offset
,
4
);
if
(
slave
->
ByteOrdering
==
pwr_eByteOrdering_BigEndian
)
data32
=
swap32
(
data32
);
*
(
pwr_tInt32
*
)
chanp
->
vbp
=
data32
;
break
;
case
pwr_eDataRepEnum_UInt32
:
memcpy
(
&
udata32
,
diag_area
+
chanp
->
offset
,
4
);
if
(
slave
->
ByteOrdering
==
pwr_eByteOrdering_BigEndian
)
udata32
=
swap32
(
udata32
);
*
(
pwr_tInt32
*
)
chanp
->
vbp
=
(
pwr_tInt32
)
udata32
;
break
;
}
}
}
}
break
;
break
;
}
}
...
...
profibus/lib/rt/src/os_linux/rt_io_pb_locals.h
View file @
ecefd771
/*
/*
* Proview $Id: rt_io_pb_locals.h,v 1.
5 2007-05-18 12:00:52
claes Exp $
* Proview $Id: rt_io_pb_locals.h,v 1.
6 2007-10-08 13:43:10
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
* Copyright (C) 2005 SSAB Oxelsund AB.
*
*
* This program is free software; you can redistribute it and/or
* This program is free software; you can redistribute it and/or
...
@@ -51,6 +51,8 @@
...
@@ -51,6 +51,8 @@
#define PB_ORIENTATION_WORD 16
#define PB_ORIENTATION_WORD 16
#define PB_ORIENTATION_DWORD 32
#define PB_ORIENTATION_DWORD 32
#define PB_UDATA_DIAG 1
typedef
struct
{
typedef
struct
{
int
hServiceReadDevice
;
// Handle for Service device
int
hServiceReadDevice
;
// Handle for Service device
int
hServiceWriteDevice
;
// Handle for Service device
int
hServiceWriteDevice
;
// Handle for Service device
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment