0 - FALSE
1 - TRUE
-2 (0xFFFFFFFE) - FPA_INVALID_NO
Example:
....................
F_Sectors_Blank_Check (0x1000, 0x107F) ; //INFO secto blank check
F_Sectors_Blank_Check (0x8000, 0xFFFF) ; //32 kB memory size blank check
F_Sectors_Blank_Check (0x1220, 0x123f) ; //part of sector blank check
....................
F_Write_Word
F_Write_Word - Write one word ( two bytes) to RAM, registers, IO etc. without FLASH.
VALID FPA index - ( 1 to 64 ) or 0 (ALL FPAs) executed sequentially.
Note: When the BSL or Fast BSL is used then an access to RAM location 0x200 to 0x2FF is
blocked. This RAM area is used by stack and firmware for the BSL or Fast BSL.
Write one word to any location of the target device. Write to Flash has no effect.
Parameters:
address - Even address from 0x0000 to 0x1FFFE,
data - one word to be written to target device
Syntax:
MSPPRG_API INT_X F_Write_Word( LONG_X addr, INT_X data );
Return value:
0 - FALSE
1 - TRUE
-2 (0xFFFFFFFE) - FPA_INVALID_NO
Example:
F_Write_Word( 0x0124, 0x2143 );
F_Read_Word
F_Write_Word - Read one word ( two bytes) from RAM, registers, IO, Flash etc.
VALID FPA index - ( 1 to 64 ) or 0 (ALL FPAs) executed sequentially.
95