Skip to content

Commit

Permalink
Merge branch 'bugfix/fix_bootloader_sha256_flash_contents_mask_issue'…
Browse files Browse the repository at this point in the history
… into 'master'

bootloader: fix bootloader_sha256_flash_contents mmap issue

See merge request espressif/esp-idf!21391
  • Loading branch information
Icarus113 committed Dec 2, 2022
2 parents 18e0cd6 + d882366 commit f54df61
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -20,7 +20,7 @@ extern "C" {

#define FLASH_SECTOR_SIZE 0x1000
#define FLASH_BLOCK_SIZE 0x10000
#define MMAP_ALIGNED_MASK 0x0000FFFF
#define MMAP_ALIGNED_MASK (SPI_FLASH_MMU_PAGE_SIZE - 1)
#define MMU_FLASH_MASK (~(SPI_FLASH_MMU_PAGE_SIZE - 1))

/**
Expand Down

0 comments on commit f54df61

Please sign in to comment.