diff options
author | Elias Oenal <git@eliasoenal.com> | 2018-05-18 16:49:17 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2018-06-10 16:11:18 +0200 |
commit | bf11741f6698289c827f590a419931acd6b86f98 (patch) | |
tree | a02c8152a0525eb0dbf5951189d10653509480b5 /decoders/mdio/pd.py | |
parent | 039b0db244e2e592a581a6c9b79a934bde136569 (diff) | |
download | libsigrokdecode-bf11741f6698289c827f590a419931acd6b86f98.tar.gz libsigrokdecode-bf11741f6698289c827f590a419931acd6b86f98.zip |
Revert "mdio: Add 'TURNAROUND' long/full annotation." in order to comply with the naming used in the Ethernet standard.
This reverts commit 30d775b095a4b76e5fa755b19d5521affa3c053c.
Diffstat (limited to 'decoders/mdio/pd.py')
-rw-r--r-- | decoders/mdio/pd.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/decoders/mdio/pd.py b/decoders/mdio/pd.py index 3580acc..9ea3a27 100644 --- a/decoders/mdio/pd.py +++ b/decoders/mdio/pd.py @@ -275,10 +275,9 @@ class Decoder(srd.Decoder): def state_DATA(self, mdio): if self.data == -1: self.data = 0 - self.putff([2, ['TURNAROUND', 'TA', 'T']]) + self.putff([2, ['TA', 'T']]) if self.ta_invalid: - self.putff([4, ['TURNAROUND%s' % self.ta_invalid, - 'TA%s' % self.ta_invalid, 'TA', 'T']]) + self.putff([4, ['TA%s' % self.ta_invalid, 'TA', 'T']]) self.ss_frame_field = self.samplenum self.data_bits -= 1 self.data |= mdio << self.data_bits |