This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push: new b1276ea system/adb: Change the default value of ADBD_PAYLOAD_SIZE to 1024 b1276ea is described below commit b1276ea1b485c7ff7baf702d75b780fbc402d9fb Author: Xiang Xiao <xiaoxi...@xiaomi.com> AuthorDate: Sun Feb 13 18:18:09 2022 +0800 system/adb: Change the default value of ADBD_PAYLOAD_SIZE to 1024 improve the speed of "adb push" and "adb pull" Signed-off-by: Xiang Xiao <xiaoxi...@xiaomi.com> --- system/adb/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/adb/Kconfig b/system/adb/Kconfig index 87fa0b6..2fe73b4 100644 --- a/system/adb/Kconfig +++ b/system/adb/Kconfig @@ -83,7 +83,7 @@ config ADBD_FEATURES config ADBD_PAYLOAD_SIZE int "Normal ADB frame size" - default 64 + default 1024 ---help--- Normal frame size in bytes.