Home
last modified time | relevance | path

Searched refs:rem_bytes (Results 1 – 1 of 1) sorted by relevance

/mcuboot-latest/boot/boot_serial/src/
Dboot_serial.c783 size_t rem_bytes; /* Reminder bytes after aligning chunk write to in bs_upload() local
937 rem_bytes = img_chunk_len % flash_area_align(fap); in bs_upload()
938 img_chunk_len -= rem_bytes; in bs_upload()
940 if (curr_off + img_chunk_len + rem_bytes < img_size) { in bs_upload()
941 rem_bytes = 0; in bs_upload()
978 if (rc == 0 && rem_bytes) { in bs_upload()
986 memcpy(wbs_aligned, img_chunk + img_chunk_len, rem_bytes); in bs_upload()
993 curr_off += img_chunk_len + rem_bytes; in bs_upload()