Tweak block size to increase performance

This commit is contained in:
Davide Depau 2018-08-14 19:55:29 +02:00
parent 3517619b4d
commit 2094aebfa8
Signed by: depau
GPG key ID: C7D999B6A55EFE86

View file

@ -12,7 +12,8 @@ import eu.depau.ddroid.utils.name
import java.nio.ByteBuffer
class UsbAPIWriteService : UsbWriteService("UsbAPIWriteService") {
val DD_BLOCKSIZE = 4096
// 512 * 32 bytes = USB max transfer size
val DD_BLOCKSIZE = 512 * 32 * 64 // 1 MB
class Action {
val WRITE_IMAGE = "eu.depau.ddroid.action.API_WRITE_IMAGE"