diff options
author | Mariusz Bialonczyk <manio@skyboo.net> | 2019-03-13 18:47:38 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2019-03-28 22:34:57 +0100 |
commit | b53a9138efdcdca3d15846bb19eba1bab0407b7d (patch) | |
tree | 3ef2d447fdf9a08e17ca3912fe8f6c2df4645e0d | |
parent | 2787cf2abc0187679e87d3735ca3e64c2a1a91c8 (diff) | |
download | libsigrokdecode-b53a9138efdcdca3d15846bb19eba1bab0407b7d.tar.gz libsigrokdecode-b53a9138efdcdca3d15846bb19eba1bab0407b7d.zip |
onewire_network: add a missing 'Resume ROM' command
For details see the DS2408 datasheet, section "Resume Command [A5h]".
-rw-r--r-- | decoders/onewire_network/pd.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/decoders/onewire_network/pd.py b/decoders/onewire_network/pd.py index 4b5fed5..c31d5f9 100644 --- a/decoders/onewire_network/pd.py +++ b/decoders/onewire_network/pd.py @@ -29,6 +29,7 @@ command = { 0xec: ['Conditional search ROM', 'SEARCH ROM'], 0x3c: ['Overdrive skip ROM' , 'TRANSPORT' ], 0x69: ['Overdrive match ROM' , 'GET ROM' ], + 0xa5: ['Resume' , 'TRANSPORT' ], } class Decoder(srd.Decoder): |