Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Raptor Engineering Public Development
dsview
Commits
f1c3be44
Commit
f1c3be44
authored
5 years ago
by
DoI
Browse files
Options
Download
Email Patches
Plain Diff
Added TPM message support to the LPC decoder
parent
f17c612c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
libsigrokdecode4DSL/decoders/lpc/pd.py
libsigrokdecode4DSL/decoders/lpc/pd.py
+2
-2
No files found.
libsigrokdecode4DSL/decoders/lpc/pd.py
View file @
f1c3be44
...
...
@@ -29,7 +29,7 @@ fields = {
0b0010
:
'Grant for bus master 0'
,
0b0011
:
'Grant for bus master 1'
,
0b0100
:
'Reserved'
,
0b0101
:
'
Reserved
'
,
0b0101
:
'
TPM
'
,
0b0110
:
'Reserved'
,
0b0111
:
'Reserved'
,
0b1000
:
'Reserved'
,
...
...
@@ -193,7 +193,7 @@ class Decoder(srd.Decoder):
if
lframe
!=
1
:
return
if
(
self
.
oldlad
==
0b0000
):
if
(
self
.
oldlad
==
0b0000
or
self
.
oldlad
==
0b0101
):
self
.
start_field
=
self
.
oldlad
self
.
state
=
'GET CT/DR'
else
:
...
...
This diff is collapsed.
Click to expand it.
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