Hello,
When I generate a hex file, I get a warning as per the title. I'd like to remove the warning but not sure what it is telling me.
I am generating a hex file using post-build steps as follows:
${CG_TOOL_HEX} ${command} ${flags} ${output_flag} ${output} ${inputs} ../hex_file_all_sectors_image.hexcmd
The content of my command file is:
..\CPU1_FLASH\CPU1.out
--image
--intel
ROMS
{
ALL_FLASH_SECTORS: org = 0x80000, len = 0x40000, romwidth = 16, fill = 0xFFFF
files = { CPU1_IMAGE.hex }
}
The actual hex file contents are correct as far as I can tell I get the following warning:
warning: section ..\CPU1_FLASH\CPU1.out(dclfuncs) at 0124h falls in unconfigured memory (skipped)
Section 'dlcfuncs' is directed to RAMM0 at 0x0123 in the linker command file:
dclfuncs : > RAMM0, PAGE = 0, ALIGN(2)
Questions:
- Why does hex2000 think I should be warned about this?
- How can I avoid the warning please?
Thank you.