Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsview
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Raptor Engineering Public Development
dsview
Commits
85c2ef62
Unverified
Commit
85c2ef62
authored
Dec 30, 2019
by
DreamSourceLab
Committed by
GitHub
Dec 30, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #180 from denandz/master
Added TPM message support to the LPC decoder
parents
08ddb1fa
f1c3be44
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 @
85c2ef62
...
...
@@ -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'
,
...
...
@@ -186,7 +186,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
:
...
...
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