Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PPSi
Manage
Activity
Members
Labels
Plan
Issues
55
Issue boards
Milestones
Wiki
Code
Merge requests
1
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
PPSi
Commits
585ea8e3
Commit
585ea8e3
authored
8 months ago
by
Adam Wujek
Browse files
Options
Downloads
Patches
Plain Diff
tools/wrs_dump_shmem_ppsi: use yes/no for booleans in l1e_ext_portDS_info
Signed-off-by:
Adam Wujek
<
dev_public@wujek.eu
>
parent
989b4c18
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/wrs_dump_shmem_ppsi.c
+18
-18
18 additions, 18 deletions
tools/wrs_dump_shmem_ppsi.c
with
18 additions
and
18 deletions
tools/wrs_dump_shmem_ppsi.c
+
18
−
18
View file @
585ea8e3
...
...
@@ -151,28 +151,28 @@ struct dump_info wrh_servo_info [] = {
#undef DUMP_STRUCT
#define DUMP_STRUCT l1e_ext_portDS_t
struct
dump_info
l1e_ext_portDS_info
[]
=
{
DUMP_FIELD
(
Boolean
,
basic
.
L1SyncEnabled
),
DUMP_FIELD
(
Boolean
,
basic
.
txCoherentIsRequired
),
DUMP_FIELD
(
Boolean
,
basic
.
rxCoherentIsRequired
),
DUMP_FIELD
(
Boolean
,
basic
.
congruentIsRequired
),
DUMP_FIELD
(
Boolean
,
basic
.
optParamsEnabled
),
DUMP_FIELD
(
yes_no
,
basic
.
L1SyncEnabled
),
DUMP_FIELD
(
yes_no
,
basic
.
txCoherentIsRequired
),
DUMP_FIELD
(
yes_no
,
basic
.
rxCoherentIsRequired
),
DUMP_FIELD
(
yes_no
,
basic
.
congruentIsRequired
),
DUMP_FIELD
(
yes_no
,
basic
.
optParamsEnabled
),
DUMP_FIELD
(
Integer8
,
basic
.
logL1SyncInterval
),
DUMP_FIELD
(
Integer8
,
basic
.
L1SyncReceiptTimeout
),
DUMP_FIELD
(
Boolean
,
basic
.
L1SyncLinkAlive
),
DUMP_FIELD
(
Boolean
,
basic
.
isTxCoherent
),
DUMP_FIELD
(
Boolean
,
basic
.
isRxCoherent
),
DUMP_FIELD
(
Boolean
,
basic
.
isCongruent
),
DUMP_FIELD
(
yes_no
,
basic
.
L1SyncLinkAlive
),
DUMP_FIELD
(
yes_no
,
basic
.
isTxCoherent
),
DUMP_FIELD
(
yes_no
,
basic
.
isRxCoherent
),
DUMP_FIELD
(
yes_no
,
basic
.
isCongruent
),
DUMP_FIELD
(
l1_sync_state_Enumeration8
,
basic
.
L1SyncState
),
DUMP_FIELD
(
Boolean
,
basic
.
peerTxCoherentIsRequired
),
DUMP_FIELD
(
Boolean
,
basic
.
peerRxCoherentIsRequired
),
DUMP_FIELD
(
Boolean
,
basic
.
peerCongruentIsRequired
),
DUMP_FIELD
(
Boolean
,
basic
.
peerIsTxCoherent
),
DUMP_FIELD
(
Boolean
,
basic
.
peerIsRxCoherent
),
DUMP_FIELD
(
Boolean
,
basic
.
peerIsCongruent
),
DUMP_FIELD
(
yes_no
,
basic
.
peerTxCoherentIsRequired
),
DUMP_FIELD
(
yes_no
,
basic
.
peerRxCoherentIsRequired
),
DUMP_FIELD
(
yes_no
,
basic
.
peerCongruentIsRequired
),
DUMP_FIELD
(
yes_no
,
basic
.
peerIsTxCoherent
),
DUMP_FIELD
(
yes_no
,
basic
.
peerIsRxCoherent
),
DUMP_FIELD
(
yes_no
,
basic
.
peerIsCongruent
),
DUMP_FIELD
(
l1_sync_state_Enumeration8
,
basic
.
next_state
),
DUMP_FIELD
(
Boolean
,
opt_params
.
timestampsCorrectedTx
),
DUMP_FIELD
(
Boolean
,
opt_params
.
phaseOffsetTxValid
),
DUMP_FIELD
(
Boolean
,
opt_params
.
frequencyOffsetTxValid
),
DUMP_FIELD
(
yes_no
,
opt_params
.
timestampsCorrectedTx
),
DUMP_FIELD
(
yes_no
,
opt_params
.
phaseOffsetTxValid
),
DUMP_FIELD
(
yes_no
,
opt_params
.
frequencyOffsetTxValid
),
DUMP_FIELD
(
time
,
opt_params
.
phaseOffsetTx
),
DUMP_FIELD
(
Timestamp
,
opt_params
.
phaseOffsetTxTimesatmp
),
DUMP_FIELD
(
time
,
opt_params
.
frequencyOffsetTx
),
...
...
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