Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
etherlabmaster
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ICS Control System Infrastructure
etherlabmaster
Commits
aa76ae64
Commit
aa76ae64
authored
15 years ago
by
Florian Pose
Browse files
Options
Downloads
Patches
Plain Diff
Output hex values in ethercat xml.
parent
01c0f267
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
TODO
+0
-1
0 additions, 1 deletion
TODO
tool/CommandXml.cpp
+3
-3
3 additions, 3 deletions
tool/CommandXml.cpp
with
3 additions
and
4 deletions
TODO
+
0
−
1
View file @
aa76ae64
...
...
@@ -31,7 +31,6 @@ Version 1.5.0:
- Implement ranges for slaves and domains.
- Add -x switch for hex display.
- Implement CompleteAccess
- Output hexadecimal values in xml command.
- Implement --output-file argument in foe_read.
- Fix arguments of reg_read.
- Number layout for reg_read.
...
...
This diff is collapsed.
Click to expand it.
tool/CommandXml.cpp
+
3
−
3
View file @
aa76ae64
...
...
@@ -143,9 +143,9 @@ void CommandXml::generateSlaveXml(
cout
<<
in
<<
" <Sm Enable=
\"
"
<<
dec
<<
(
unsigned
int
)
sync
.
enable
<<
"
\"
StartAddress=
\"
"
<<
sync
.
physical_start_address
<<
"
\"
ControlByte=
\"
"
<<
(
unsigned
int
)
sync
.
control_register
<<
"
\"
DefaultSize=
\"
"
<<
sync
.
default_size
<<
"
\"
StartAddress=
\"
#x"
<<
hex
<<
sync
.
physical_start_address
<<
"
\"
ControlByte=
\"
#x"
<<
hex
<<
(
unsigned
int
)
sync
.
control_register
<<
"
\"
DefaultSize=
\"
"
<<
dec
<<
sync
.
default_size
<<
"
\"
/>"
<<
endl
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment