Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
White Rabbit Switch - Software
Manage
Activity
Members
Labels
Plan
Issues
87
Issue boards
Milestones
Wiki
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
White Rabbit Switch - Software
Commits
81adcc8c
Commit
81adcc8c
authored
10 years ago
by
Alessandro Rubini
Browse files
Options
Downloads
Patches
Plain Diff
userspace/tools: add '-w' option to wr_mon
Signed-off-by:
Alessandro Rubini
<
rubini@gnudd.com
>
parent
9c2217cf
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
userspace/tools/wr_mon.c
+43
-1
43 additions, 1 deletion
userspace/tools/wr_mon.c
with
43 additions
and
1 deletion
userspace/tools/wr_mon.c
+
43
−
1
View file @
81adcc8c
...
...
@@ -141,6 +141,44 @@ void show_ports(void)
}
}
/*
* This is almost a copy of the above, used by web interface.
* Code duplication is bad, but this is better than a separate tool
* which is almost identical but even broken
*/
static
void
show_unadorned_ports
(
void
)
{
int
i
,
j
;
for
(
i
=
0
;
i
<
18
;
i
++
)
{
char
if_name
[
10
],
found
=
0
;
hexp_port_state_t
state
;
snprintf
(
if_name
,
10
,
"wr%d"
,
i
);
for
(
j
=
0
;
j
<
port_list
.
num_ports
;
j
++
)
if
(
!
strcmp
(
port_list
.
port_names
[
j
],
if_name
))
{
found
=
1
;
break
;
}
if
(
!
found
)
continue
;
halexp_get_port_state
(
&
state
,
if_name
);
printf
(
"%s %s %s %s
\n
"
,
/* trailing space needed? */
state
.
up
?
"up"
:
"down"
,
state
.
mode
==
HEXP_PORT_MODE_WR_MASTER
?
"Master"
:
"Slave"
,
/* FIXME: other options? */
state
.
is_locked
?
"Locked"
:
"NoLock"
,
state
.
rx_calibrated
&&
state
.
tx_calibrated
?
"Calibrated"
:
"Uncalibrated"
);
}
}
void
show_servo
(
void
)
{
ptpdexp_sync_state_t
ss
;
...
...
@@ -260,7 +298,7 @@ int main(int argc, char *argv[])
int
opt
;
int
usecolor
=
1
;
while
((
opt
=
getopt
(
argc
,
argv
,
"sbgp"
))
!=
-
1
)
while
((
opt
=
getopt
(
argc
,
argv
,
"sbgp
w
"
))
!=
-
1
)
{
switch
(
opt
)
{
...
...
@@ -280,6 +318,10 @@ int main(int argc, char *argv[])
init
(
0
);
show_all
();
exit
(
0
);
case
'w'
:
/* for the web interface */
init
(
0
);
show_unadorned_ports
();
exit
(
0
);
default:
fprintf
(
stderr
,
"Unrecognized option.
\n
"
);
break
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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