]> sigrok.org Git - libsigrokdecode.git/commit
decoder: rename iteration variables to improve readability
authorGerhard Sittig <redacted>
Sun, 1 Nov 2020 13:48:14 +0000 (14:48 +0100)
committerGerhard Sittig <redacted>
Sun, 9 Jan 2022 16:53:37 +0000 (17:53 +0100)
commitda253ef59221744f7258720861638bd1ae2e335f
treef03d2c8eabd9d9cc07aaf38c793aa76c4095a737
parent8ab7ede6bb84e78232a8927fea16295040d650b4
decoder: rename iteration variables to improve readability

Use longer variable names for the iteration over channels, options,
annotation classes and rows, and binary classes when a decoder gets
loaded. This improves readability, especially in nested loops with
complex test conditions and diagnostics messages.

Although the Python variables were checked for their availability and
expected data type, and we should only see non-negative index values,
the iteration variable's data type remains unchanged in this commit
(sticks with signed size types).
decoder.c