From 74177a2688f1163ec9659f3847d7cd17d0eb325f Mon Sep 17 00:00:00 2001 From: Johan Jansen Date: Thu, 26 Feb 2015 11:14:54 +0100 Subject: [PATCH] px4_uploader: Push program bytes faster by using bigger blocks --- Tools/px_uploader.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tools/px_uploader.py b/Tools/px_uploader.py index 8042ec34ab..c9a142ddf4 100755 --- a/Tools/px_uploader.py +++ b/Tools/px_uploader.py @@ -169,8 +169,8 @@ class uploader(object): INFO_BOARD_REV = b'\x03' # board revision INFO_FLASH_SIZE = b'\x04' # max firmware size in bytes - PROG_MULTI_MAX = 60 # protocol max is 255, must be multiple of 4 - READ_MULTI_MAX = 60 # protocol max is 255, something overflows with >= 64 + PROG_MULTI_MAX = 252 # protocol max is 255, must be multiple of 4 + READ_MULTI_MAX = 252 # protocol max is 255 NSH_INIT = bytearray(b'\x0d\x0d\x0d') NSH_REBOOT_BL = b"reboot -b\n"