commit | 4842147fa07501d0b586047d62b274515b072fe9 | [log] [tgz] |
---|---|---|
author | June Tate-Gans <jtgans@google.com> | Fri Dec 01 18:04:09 2023 +0000 |
committer | June Tate-Gans <jtgans@google.com> | Fri Dec 01 18:04:09 2023 +0000 |
tree | 29687fe268734cf984d56f785b2f8d9b0c2f6c97 | |
parent | b509bdbbd1602a8be2d43d146511cc0767dd424f [diff] |
i2s: Adjust fifo buffer size to match real hardware Change-Id: I4caf9aaa45f9be0b254f446fa51705b7f54083ff
diff --git a/shodan_infrastructure/MatchaI2S.cs b/shodan_infrastructure/MatchaI2S.cs index 0591490..be3a3da 100644 --- a/shodan_infrastructure/MatchaI2S.cs +++ b/shodan_infrastructure/MatchaI2S.cs
@@ -108,7 +108,7 @@ public uint Count { get { lock(synclock) { return count; } } } - const uint FIFO_SIZE = 64; + const uint FIFO_SIZE = 32; const uint FIFO_MASK = FIFO_SIZE - 1; private uint cursor_r = 0;