fix memset buf

This commit is contained in:
WantClue 2024-08-13 22:32:11 +02:00
parent 2653c8c046
commit 064b89207f

View File

@ -94,7 +94,7 @@ void SERIAL_debug_rx(void)
return;
}
memset(buf, 0, 1024);
memset(buf, 0, 100);
}
void SERIAL_clear_buffer(void)