Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
osie
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
Nikola Balog
osie
Commits
85c14244
Commit
85c14244
authored
Apr 09, 2024
by
Ivan Tyagov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Factorize Digital In.
parent
a1745fca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
140 deletions
+27
-140
coupler/mod_io_opc_ua.h
coupler/mod_io_opc_ua.h
+27
-140
No files found.
coupler/mod_io_opc_ua.h
View file @
85c14244
...
...
@@ -102,6 +102,7 @@ static void beforeReadTime(UA_Server *server,
// nothing to do as not needed.
}
// Analong Inputs
static
void
beforeReadTimeAnalongIn
(
int
addr
,
uint8_t
read_addr
,
const
UA_DataValue
*
data
)
{
/*
* Generic handler for reading from physicall analong input.
...
...
@@ -180,16 +181,17 @@ static void beforeReadTimeI2C1Ain3(UA_Server *server,
beforeReadTimeAnalongIn
(
I2C_SLAVE_ADDR_LIST
[
1
],
0x33
,
data
);
}
static
void
beforeReadTimeI2C0In0
(
UA_Server
*
server
,
const
UA_NodeId
*
sessionId
,
void
*
sessionContext
,
const
UA_NodeId
*
nodeid
,
void
*
nodeContext
,
const
UA_NumericRange
*
range
,
const
UA_DataValue
*
data
)
{
int
addr
=
I2C_SLAVE_ADDR_LIST
[
0
];
// Digital Inputs
static
void
beforeReadTimeDigitalIn
(
int
addr
,
int
input_number
,
const
UA_DataValue
*
data
){
/*
* Generic handler for reading and updating a Digital In.
*/
char
*
data_input
=
0
;
if
(
!
I2C_VIRTUAL_MODE
)
{
getDigitalInputState
(
addr
,
&
data_input
);
if
((
*
data_input
)
&
(
1UL
<<
0
))
if
((
*
data_input
)
&
(
1UL
<<
input_number
))
{
if
(
data
->
value
.
type
==
&
UA_TYPES
[
UA_TYPES_BOOLEAN
])
{
...
...
@@ -206,30 +208,20 @@ static void beforeReadTimeI2C0In0(UA_Server *server,
}
}
static
void
beforeReadTimeI2C0In0
(
UA_Server
*
server
,
const
UA_NodeId
*
sessionId
,
void
*
sessionContext
,
const
UA_NodeId
*
nodeid
,
void
*
nodeContext
,
const
UA_NumericRange
*
range
,
const
UA_DataValue
*
data
)
{
beforeReadTimeDigitalIn
(
I2C_SLAVE_ADDR_LIST
[
0
],
0
,
data
);
}
static
void
beforeReadTimeI2C0In1
(
UA_Server
*
server
,
const
UA_NodeId
*
sessionId
,
void
*
sessionContext
,
const
UA_NodeId
*
nodeid
,
void
*
nodeContext
,
const
UA_NumericRange
*
range
,
const
UA_DataValue
*
data
)
{
int
addr
=
I2C_SLAVE_ADDR_LIST
[
0
];
char
*
data_input
=
0
;
if
(
!
I2C_VIRTUAL_MODE
)
{
getDigitalInputState
(
addr
,
&
data_input
);
if
((
*
data_input
)
&
(
1UL
<<
1
))
{
if
(
data
->
value
.
type
==
&
UA_TYPES
[
UA_TYPES_BOOLEAN
])
{
*
(
UA_Boolean
*
)
data
->
value
.
data
=
true
;
}
}
else
{
if
(
data
->
value
.
type
==
&
UA_TYPES
[
UA_TYPES_BOOLEAN
])
{
*
(
UA_Boolean
*
)
data
->
value
.
data
=
false
;
}
}
}
beforeReadTimeDigitalIn
(
I2C_SLAVE_ADDR_LIST
[
0
],
1
,
data
);
}
static
void
beforeReadTimeI2C0In2
(
UA_Server
*
server
,
...
...
@@ -237,25 +229,7 @@ static void beforeReadTimeI2C0In2(UA_Server *server,
const
UA_NodeId
*
nodeid
,
void
*
nodeContext
,
const
UA_NumericRange
*
range
,
const
UA_DataValue
*
data
)
{
int
addr
=
I2C_SLAVE_ADDR_LIST
[
0
];
char
*
data_input
=
0
;
if
(
!
I2C_VIRTUAL_MODE
)
{
getDigitalInputState
(
addr
,
&
data_input
);
if
((
*
data_input
)
&
(
1UL
<<
2
))
{
if
(
data
->
value
.
type
==
&
UA_TYPES
[
UA_TYPES_BOOLEAN
])
{
*
(
UA_Boolean
*
)
data
->
value
.
data
=
true
;
}
}
else
{
if
(
data
->
value
.
type
==
&
UA_TYPES
[
UA_TYPES_BOOLEAN
])
{
*
(
UA_Boolean
*
)
data
->
value
.
data
=
false
;
}
}
}
beforeReadTimeDigitalIn
(
I2C_SLAVE_ADDR_LIST
[
0
],
2
,
data
);
}
static
void
beforeReadTimeI2C0In3
(
UA_Server
*
server
,
...
...
@@ -263,50 +237,16 @@ static void beforeReadTimeI2C0In3(UA_Server *server,
const
UA_NodeId
*
nodeid
,
void
*
nodeContext
,
const
UA_NumericRange
*
range
,
const
UA_DataValue
*
data
)
{
int
addr
=
I2C_SLAVE_ADDR_LIST
[
0
];
char
*
data_input
=
0
;
if
(
!
I2C_VIRTUAL_MODE
)
{
getDigitalInputState
(
addr
,
&
data_input
);
if
((
*
data_input
)
&
(
1UL
<<
3
))
{
if
(
data
->
value
.
type
==
&
UA_TYPES
[
UA_TYPES_BOOLEAN
])
{
*
(
UA_Boolean
*
)
data
->
value
.
data
=
true
;
}
}
else
{
if
(
data
->
value
.
type
==
&
UA_TYPES
[
UA_TYPES_BOOLEAN
])
{
*
(
UA_Boolean
*
)
data
->
value
.
data
=
false
;
}
}
}
beforeReadTimeDigitalIn
(
I2C_SLAVE_ADDR_LIST
[
0
],
3
,
data
);
}
static
void
beforeReadTimeI2C1In0
(
UA_Server
*
server
,
const
UA_NodeId
*
sessionId
,
void
*
sessionContext
,
const
UA_NodeId
*
nodeid
,
void
*
nodeContext
,
const
UA_NumericRange
*
range
,
const
UA_DataValue
*
data
)
{
int
addr
=
I2C_SLAVE_ADDR_LIST
[
1
];
char
*
data_input
=
0
;
if
(
!
I2C_VIRTUAL_MODE
)
{
getDigitalInputState
(
addr
,
&
data_input
);
if
((
*
data_input
)
&
(
1UL
<<
0
))
{
if
(
data
->
value
.
type
==
&
UA_TYPES
[
UA_TYPES_BOOLEAN
])
{
*
(
UA_Boolean
*
)
data
->
value
.
data
=
true
;
}
}
else
{
if
(
data
->
value
.
type
==
&
UA_TYPES
[
UA_TYPES_BOOLEAN
])
{
*
(
UA_Boolean
*
)
data
->
value
.
data
=
false
;
}
}
}
beforeReadTimeDigitalIn
(
I2C_SLAVE_ADDR_LIST
[
1
],
0
,
data
);
}
static
void
beforeReadTimeI2C1In1
(
UA_Server
*
server
,
...
...
@@ -314,25 +254,7 @@ static void beforeReadTimeI2C1In1(UA_Server *server,
const
UA_NodeId
*
nodeid
,
void
*
nodeContext
,
const
UA_NumericRange
*
range
,
const
UA_DataValue
*
data
)
{
int
addr
=
I2C_SLAVE_ADDR_LIST
[
1
];
char
*
data_input
=
0
;
if
(
!
I2C_VIRTUAL_MODE
)
{
getDigitalInputState
(
addr
,
&
data_input
);
if
((
*
data_input
)
&
(
1UL
<<
1
))
{
if
(
data
->
value
.
type
==
&
UA_TYPES
[
UA_TYPES_BOOLEAN
])
{
*
(
UA_Boolean
*
)
data
->
value
.
data
=
true
;
}
}
else
{
if
(
data
->
value
.
type
==
&
UA_TYPES
[
UA_TYPES_BOOLEAN
])
{
*
(
UA_Boolean
*
)
data
->
value
.
data
=
false
;
}
}
}
beforeReadTimeDigitalIn
(
I2C_SLAVE_ADDR_LIST
[
1
],
1
,
data
);
}
static
void
beforeReadTimeI2C1In2
(
UA_Server
*
server
,
...
...
@@ -340,25 +262,7 @@ static void beforeReadTimeI2C1In2(UA_Server *server,
const
UA_NodeId
*
nodeid
,
void
*
nodeContext
,
const
UA_NumericRange
*
range
,
const
UA_DataValue
*
data
)
{
int
addr
=
I2C_SLAVE_ADDR_LIST
[
1
];
char
*
data_input
=
0
;
if
(
!
I2C_VIRTUAL_MODE
)
{
getDigitalInputState
(
addr
,
&
data_input
);
if
((
*
data_input
)
&
(
1UL
<<
2
))
{
if
(
data
->
value
.
type
==
&
UA_TYPES
[
UA_TYPES_BOOLEAN
])
{
*
(
UA_Boolean
*
)
data
->
value
.
data
=
true
;
}
}
else
{
if
(
data
->
value
.
type
==
&
UA_TYPES
[
UA_TYPES_BOOLEAN
])
{
*
(
UA_Boolean
*
)
data
->
value
.
data
=
false
;
}
}
}
beforeReadTimeDigitalIn
(
I2C_SLAVE_ADDR_LIST
[
1
],
2
,
data
);
}
static
void
beforeReadTimeI2C1In3
(
UA_Server
*
server
,
...
...
@@ -366,27 +270,10 @@ static void beforeReadTimeI2C1In3(UA_Server *server,
const
UA_NodeId
*
nodeid
,
void
*
nodeContext
,
const
UA_NumericRange
*
range
,
const
UA_DataValue
*
data
)
{
int
addr
=
I2C_SLAVE_ADDR_LIST
[
1
];
char
*
data_input
=
0
;
if
(
!
I2C_VIRTUAL_MODE
)
{
getDigitalInputState
(
addr
,
&
data_input
);
if
((
*
data_input
)
&
(
1UL
<<
3
))
{
if
(
data
->
value
.
type
==
&
UA_TYPES
[
UA_TYPES_BOOLEAN
])
{
*
(
UA_Boolean
*
)
data
->
value
.
data
=
true
;
}
}
else
{
if
(
data
->
value
.
type
==
&
UA_TYPES
[
UA_TYPES_BOOLEAN
])
{
*
(
UA_Boolean
*
)
data
->
value
.
data
=
false
;
}
}
}
beforeReadTimeDigitalIn
(
I2C_SLAVE_ADDR_LIST
[
1
],
3
,
data
);
}
// Relays
static
void
afterWriteTime
(
UA_Server
*
server
,
const
UA_NodeId
*
sessionId
,
void
*
sessionContext
,
const
UA_NodeId
*
nodeId
,
void
*
nodeContext
,
...
...
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