#553 let's try 768

This commit is contained in:
rusefi 2018-01-25 09:46:31 -05:00
parent 87a21d9659
commit ecea4f4be0
2 changed files with 2 additions and 2 deletions

View File

@ -174,7 +174,7 @@ void sr5WriteData(ts_channel_s *tsChannel, const uint8_t * buffer, int size) {
int transferred = 0;
int stillToTransfer = size;
while (stillToTransfer > 0) {
int thisTransferSize = minI(stillToTransfer, 1024);
int thisTransferSize = minI(stillToTransfer, 768);
transferred += chnWriteTimeout(tsChannel->channel, buffer, thisTransferSize, BINARY_IO_TIMEOUT);
buffer += thisTransferSize;
stillToTransfer -= thisTransferSize;

View File

@ -272,5 +272,5 @@ int getRusEfiVersion(void) {
if (initBootloader() != 0)
return 123;
#endif /* EFI_BOOTLOADER_INCLUDE_CODE */
return 20180125;
return 20180126;
}