summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Blake Kongslie2022-05-15 15:58:13 -0700
committerJulian Blake Kongslie2022-05-15 15:58:13 -0700
commit1a17772eb5ced179b7514c51333cc247b72054eb (patch)
treec09ff33cdeb5db543ee8c904f3b2ff061ebe3d7c
parentFix the RS232 receive state machine 😠💢:mad: (diff)
downloadmultipdp8-1a17772eb5ced179b7514c51333cc247b72054eb.tar.xz
Significantly wider line size for data downloads.
8.5sec for 16 cores!
Diffstat (limited to '')
-rw-r--r--tool/p8bin2uart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/p8bin2uart.c b/tool/p8bin2uart.c
index 5d5a708..1993ab5 100644
--- a/tool/p8bin2uart.c
+++ b/tool/p8bin2uart.c
@@ -131,7 +131,7 @@ load(FILE *fp)
131 return v; 131 return v;
132} 132}
133 133
134#define MAX_LINE_SIZE 127 134#define MAX_LINE_SIZE 1023
135 135
136char buf[MAX_LINE_SIZE * 2] = {0}; 136char buf[MAX_LINE_SIZE * 2] = {0};
137 137