diff --git a/.gitignore/error correction b/.gitignore/error correction index c76c688..f36df7a 100644 --- a/.gitignore/error correction +++ b/.gitignore/error correction @@ -32,3 +32,17 @@ def segmentString(string, fill): s2 += fill s1.append(s2) return s1 + +def printFrames(frames): + frameN = 0 + for frame in frames: + charN = 0 + for bin in frame: + char = e.bin2char(bin) + print(f"{charN:2}", bin, char) + charN += 1 + frameN += 1 + print() + + +