Browse Source

Read the full buffer

sizeof wont work here since file_buf is now a pointer
sbg
Jean Cyr 11 years ago
parent
commit
12da0efbb2
  1. 4
      src/drivers/px4io/px4io_uploader.cpp

4
src/drivers/px4io/px4io_uploader.cpp

@ -432,8 +432,8 @@ PX4IO_Uploader::program(size_t fw_size) @@ -432,8 +432,8 @@ PX4IO_Uploader::program(size_t fw_size)
while (sent < fw_size) {
/* get more bytes to program */
size_t n = fw_size - sent;
if (n > sizeof(file_buf)) {
n = sizeof(file_buf);
if (n > PROG_MULTI_MAX) {
n = PROG_MULTI_MAX;
}
count = read_with_retry(_fw_fd, file_buf, n);

Loading…
Cancel
Save