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
63a51915
Commit
63a51915
authored
May 09, 2019
by
Marcus Nordenberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Profinet Configurator fix
Properly set the unsigned/signed 8bit values
parent
867fdfb6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
profibus/lib/cow/src/cow_pn_gsdml.cpp
profibus/lib/cow/src/cow_pn_gsdml.cpp
+2
-2
No files found.
profibus/lib/cow/src/cow_pn_gsdml.cpp
View file @
63a51915
...
...
@@ -2338,12 +2338,12 @@ int pn_gsdml::string_to_datavalue(gsdml_eValueDataType datatype, void* value,
case
gsdml_eValueDataType_Integer8
:
if
(
sscanf
(
str
,
"%hhd"
,
(
char
*
)
value
)
!=
1
)
return
PB__SYNTAX
;
value_reversed_endianess
=
value
;
*
(
char
*
)
value_reversed_endianess
=
*
(
char
*
)
value
;
break
;
case
gsdml_eValueDataType_Unsigned8
:
if
(
sscanf
(
str
,
"%hhu"
,
(
unsigned
char
*
)
value
)
!=
1
)
return
PB__SYNTAX
;
value_reversed_endianess
=
value
;
*
(
unsigned
char
*
)
value_reversed_endianess
=
*
(
unsigned
char
*
)
value
;
break
;
case
gsdml_eValueDataType_Integer16
:
{
short
v
;
...
...
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