Tool/software:
Hi fellas,
I develop the bootloader. It gets application program bytes from CAN Bus and then write it to proper Flash Sector.
Bootloader and application resides on the CPU1. Every address 16 bit width.
I write data minimum 64 bit with Fapi_issueProgrammingCommand(). But when i inspect the application .hex datas,
i realized that some data lower than 64 bit. For example
%1663F8000BC010A8000000 -> Address:000BC010 Data:A800 0000
Is it possible to write the 16 bit data? If not, the proper strategy is the, before writing it to flash padding with 0xFF if its lower than 64 bit?(writing the A800 0000 FFFF FFFF)
Best regards.