From: Uwe Hermann Date: Sat, 9 Nov 2019 14:48:36 +0000 (+0100) Subject: eeprom93xx: Use fixed-width hex output. X-Git-Url: http://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=dcab210499527b4e9b5d41ebfa6852ca9e9e9df5 eeprom93xx: Use fixed-width hex output. This improves readability a bit in most cases. --- diff --git a/decoders/eeprom93xx/pd.py b/decoders/eeprom93xx/pd.py index db4dd3f..8c08fc8 100644 --- a/decoders/eeprom93xx/pd.py +++ b/decoders/eeprom93xx/pd.py @@ -67,7 +67,7 @@ class Decoder(srd.Decoder): for b in range(len(data)): a += (data[b].si << (len(data) - b - 1)) self.put(data[0].ss, data[-1].es, self.out_ann, - [0, ['Address: 0x%x' % a, 'Addr: 0x%x' % a, '0x%x' % a]]) + [0, ['Address: 0x%04x' % a, 'Addr: 0x%04x' % a, '0x%04x' % a]]) self.put(data[0].ss, data[-1].es, self.out_binary, [0, bytes([a])]) def put_word(self, si, data): @@ -90,7 +90,7 @@ class Decoder(srd.Decoder): self.out_ann, [idx, ['Data: %s' % word_str, '%s' % word_str]]) else: self.put(data[0].ss, data[-1].es, - self.out_ann, [idx, ['Data: 0x%x' % word, '0x%x' % word]]) + self.out_ann, [idx, ['Data: 0x%04x' % word, '0x%04x' % word]]) self.put(data[0].ss, data[-1].es, self.out_binary, [1, bytes([(word & 0xff00) >> 8, word & 0xff])])