lotta changes

This commit is contained in:
2026-01-10 17:13:26 +01:00
parent 1671b6e14c
commit 06de03a16d
51 changed files with 5090 additions and 13538 deletions
+2 -4
View File
@@ -28,10 +28,8 @@ RdsPiBuffer::State RdsPiBuffer::getState(uint16_t value) {
uint8_t count = 0;
uint8_t correctCount = 0;
for (uint8_t i = 0; i < this->fill; i++)
{
if (this->buff[i] == value)
{
for (uint8_t i = 0; i < this->fill; i++) {
if (this->buff[i] == value) {
count++;
if ((this->errorBuff[i / 8] & (1 << (i % 8))) == 0) correctCount++;
}