str7x: Fix byte order bug
Found by grepping for pointer casts. Change-Id: I56d5680590e37d8c61197488067fbb0776e5e0f0 Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Reviewed-on: http://openocd.zylin.com/1774 Tested-by: jenkins Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>__archive__
parent
bee7836b6a
commit
3d064b2e21
|
@ -489,9 +489,10 @@ static int str7x_write_block(struct flash_bank *bank, uint8_t *buffer,
|
|||
return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
|
||||
};
|
||||
|
||||
target_write_buffer(target, write_algorithm->address,
|
||||
sizeof(str7x_flash_write_code),
|
||||
(uint8_t *)str7x_flash_write_code);
|
||||
uint8_t code[sizeof(str7x_flash_write_code)];
|
||||
target_buffer_set_u32_array(target, code, ARRAY_SIZE(str7x_flash_write_code),
|
||||
str7x_flash_write_code);
|
||||
target_write_buffer(target, write_algorithm->address, sizeof(code), code);
|
||||
|
||||
/* memory buffer */
|
||||
while (target_alloc_working_area_try(target, buffer_size, &source) != ERROR_OK) {
|
||||
|
|
Loading…
Reference in New Issue