Improve Air Copy and enable restart

This commit is contained in:
Armel FAUVEAU
2024-08-13 20:30:00 +02:00
parent d2235c0bdb
commit 69362495b3

View File

@@ -47,6 +47,10 @@ void UI_DisplayAircopy(void)
if (gAircopyState == AIRCOPY_READY) { if (gAircopyState == AIRCOPY_READY) {
pPrintStr = "AIR COPY(RDY)"; pPrintStr = "AIR COPY(RDY)";
for(uint8_t i = 0; i < 15; i++)
{
crc[i] = 0;
}
} else if (gAircopyState == AIRCOPY_TRANSFER) { } else if (gAircopyState == AIRCOPY_TRANSFER) {
pPrintStr = "AIR COPY"; pPrintStr = "AIR COPY";
} else { } else {