We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dce686 commit 9d708ebCopy full SHA for 9d708eb
run_arduino_gen.sh
@@ -213,7 +213,10 @@ case "$1" in
213
;;
214
send-file)
215
autodetect_board
216
- dd if="$2" of=$RPMSG_DIR
+ # Maximum buffer size at a time: 512 - 16 bytes
217
+ # Otherwise, it used to return error in earlier version of OpenSTLinux
218
+ # Reference: https://elixir.bootlin.com/linux/v5.5.6/source/drivers/rpmsg/virtio_rpmsg_bus.c#L581
219
+ dd if="$2" bs=496 of=$RPMSG_DIR
220
221
minicom)
222
0 commit comments