fixed return of checkbyte for moza

This commit is contained in:
Paul Dino Jones 2025-01-15 12:24:08 -05:00
parent 8c65f8b26d
commit 5d67611b98
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ unsigned char moza_checksum(unsigned char *data)
ret += data[i];
}
return 0;
return ret;
}
int moza_update(SerialDevice* serialdevice, unsigned short maxrpm, unsigned short rpm)