Skip to content

Commit f1ef2ae

Browse files
committed
RP2040: FLASH: fix multipage write
1 parent 17f9f98 commit f1ef2ae

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

targets/TARGET_RASPBERRYPI/TARGET_RP2040/flash_api.c

+6-10
Original file line numberDiff line numberDiff line change
@@ -71,18 +71,14 @@ int32_t flash_program_page(flash_t *obj, uint32_t address, const uint8_t *data,
7171
return -1;
7272
}
7373

74-
uint8_t buf[FLASH_PAGE_SIZE];
75-
76-
for (int j = 0; j < size/FLASH_PAGE_SIZE; j++) {
77-
for (int i = 0; i < FLASH_PAGE_SIZE; i++) {
78-
buf[i] = data[j*FLASH_PAGE_SIZE + i];
79-
}
80-
address = address + j*FLASH_PAGE_SIZE;
81-
core_util_critical_section_enter();
82-
flash_range_program(address, buf, FLASH_PAGE_SIZE);
83-
core_util_critical_section_exit();
74+
size_t pages = size/FLASH_PAGE_SIZE;
75+
if (size%FLASH_PAGE_SIZE != 0) {
76+
pages += 1;
8477
}
8578

79+
core_util_critical_section_enter();
80+
flash_range_program(address, data, FLASH_PAGE_SIZE * pages);
81+
core_util_critical_section_exit();
8682

8783
return 0;
8884

0 commit comments

Comments
 (0)