Hello.
I'm trying to implement an on-chip OAD.
After looking at the manual's MCUBoot OAD Image Header and Post-Build Script imgtool, I understand that it is necessary to determine the image header version at build time.
In the example, the version is set using CCS settings as shown below.
${CG_TOOL_ROOT}/bin/tiarmobjcopy ${ProjName}.out --output-target binary ${ProjName}.bin --remove-section=.ccfg ${COM_TI_SIMPLELINK_LOWPOWER_F3_SDK_INSTALL_DIR}/tools/common/mcuboot/imgtool sign --header-size 0x100 --align 4 --slot-size 0x4C000 --version 1.0.0 --pad-header --key ${COM_TI_SIMPLELINK_LOWPOWER_F3_SDK_INSTALL_DIR}/source/ third_party/mcuboot/root-ec-p256.pem ${ProjName}.bin ${ProjName}.bin
My question is regarding how to determine --version.
I couldn't find any detailed documentation, is there anything I should be careful about?
For example, will OAD work correctly when updating from 1.0.0 to 1.0.1 and from 1.0.0 to 2.0.0?