summaryrefslogtreecommitdiff
path: root/decoders/mdio
diff options
context:
space:
mode:
Diffstat (limited to 'decoders/mdio')
-rw-r--r--decoders/mdio/pd.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/decoders/mdio/pd.py b/decoders/mdio/pd.py
index 2900444..873079a 100644
--- a/decoders/mdio/pd.py
+++ b/decoders/mdio/pd.py
@@ -273,9 +273,10 @@ class Decoder(srd.Decoder):
def state_DATA(self, mdio):
if self.data == -1:
self.data = 0
- self.putff([2, ['TA', 'T']])
+ self.putff([2, ['TURNAROUND', 'TA', 'T']])
if self.ta_invalid:
- self.putff([4, ['TA%s' % self.ta_invalid, 'TA', 'T']])
+ self.putff([4, ['TURNAROUND%s' % self.ta_invalid,
+ 'TA%s' % self.ta_invalid, 'TA', 'T']])
self.ss_frame_field = self.samplenum
self.data_bits -= 1
self.data |= mdio << self.data_bits