Tweak block size to increase performance

This commit is contained in:
Davide Depau 2018-08-14 19:55:29 +02:00
parent 2111222d2f
commit ea9c68eaad
1 changed files with 2 additions and 1 deletions

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"