From 55454f90bfd3db58ddec4fecc84f1024b5ac6ad9 Mon Sep 17 00:00:00 2001 From: Sihyung Woo <75494566+sihyung-maxim@users.noreply.github.com> Date: Tue, 24 Sep 2024 16:27:47 -0500 Subject: [PATCH] Fix comments typo --- Examples/MAX32690/Bluetooth/Bootloader/bootloader.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/MAX32690/Bluetooth/Bootloader/bootloader.ld b/Examples/MAX32690/Bluetooth/Bootloader/bootloader.ld index a79cf502d07..cb0fdfd4d45 100644 --- a/Examples/MAX32690/Bluetooth/Bootloader/bootloader.ld +++ b/Examples/MAX32690/Bluetooth/Bootloader/bootloader.ld @@ -19,7 +19,7 @@ ******************************************************************************/ /* Note: Flash 0 page size is 16KB (0x4000). Flash 1 page size is 8KB (0x2000) */ -BOOTLOADER_ORIGIN = 0x10000000; /* Bootloader resides in page 0 */ +BOOTLOADER_ORIGIN = 0x10000000; /* Bootloader resides in Flash 0 */ BOOTLOADER_LEN = 0x8000; /* 2 Flash 0 pages length (total 32KB) */ FLASH0_SECTION_LEN = 0x300000 - BOOTLOADER_LEN; /* 3MB - 2 pages (16KB/page) */ FLASH1_SECTION_LEN = 0x40000; /* 256KB */