X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcpu%2Farm%2Fdrv%2Fflash_lpc2.c;h=a78ade27c8bfe111e560d10a4a165071d3cc37c4;hb=d44a5cdd118dade91c5069b131192b5127c1b159;hp=f25e7b92c756a8332c848b6ee8e822accf2fd8d8;hpb=af6f92fdde767ddb88623acead8a59a468c1ae15;p=bertos.git diff --git a/bertos/cpu/arm/drv/flash_lpc2.c b/bertos/cpu/arm/drv/flash_lpc2.c index f25e7b92..a78ade27 100644 --- a/bertos/cpu/arm/drv/flash_lpc2.c +++ b/bertos/cpu/arm/drv/flash_lpc2.c @@ -179,7 +179,7 @@ static uint32_t addr_to_sector(size_t addr) static size_t lpc2_flash_readDirect(struct KBlock *blk, block_idx_t idx, void *buf, size_t offset, size_t size) { - memcpy(buf, (void *)(idx * blk->blk_size), size); + memcpy(buf, (void *)(idx * blk->blk_size + offset), size); return size; }