]> sigrok.org Git - libsigrokdecode.git/commit
i2s: Fix unportable use of struct.pack
authorMarcus Comstedt <redacted>
Mon, 27 Nov 2017 09:54:35 +0000 (10:54 +0100)
committerUwe Hermann <redacted>
Sat, 9 Dec 2017 12:36:13 +0000 (13:36 +0100)
commit30c855f60df2ae5d2edc568c51920f215ab38e0c
tree44faefc0bfcef0496d5e35b4c9339563d1bf8805
parente0e7be8a2f9370032573bcb3b4e7f88b36a2ae2d
i2s: Fix unportable use of struct.pack

Using the format string 'I' with the default (implied) prefix '@'
results in both word size and endianness being platform dependent.
In this case standard size (32 bits) and little endianness is
required, so the prefix '<' needs to be used.
decoders/i2s/pd.py