F_DLLTypeVer function returns integer number with DLL ID and software revision version and
copying text message to report message buffer about DLL ID and software revision. Text content
can downloaded using one of the following functions
F_GetReportMessageChar( index )
or F_ReportMessage( text )
Syntax:
MSPPRG_API INT_X F_DLLTypeVer( void );
Return value:
VALUE = (DLL ID) | ( 0x0FFF & Version)
DLL ID = 0x1000 - Single-DLL for the FlashPro430 - Parallel Port
DLL ID = 0x2000 - Single-DLL for the FlashPro430 - USB
DLL ID = 0x3000 - Single-DLL for the GangPro430 - USB
DLL ID = 0x6000 - Multi-DLL for the FlashPro430
DLL ID = 0x7000 - Multi-DLL for the GangPro 430
Version = (0x0FFF & VALUE)
-2 (0xFFFFFFFE) - FPA_INVALID_NO
Example:
INT_X id;
.......................
.......................
id = F_DLLTypeVer();
Disp_report_message();
//see F_ReportMessage or F_GetReportMessage for details
.......................
F_ConfigFileLoad, F_Config_FileLoad
F_ConfigFileLoad - Modify programmer’s configuration setup according to data taken
or F_Config_FileLoad from the specified configuration file.
VALID FPA index - ( 1 to 64 ) or 0 (ALL FPAs) executed sequentially.
The F_ConfigFileLoad function can download the programmer setup from the external setup file.
Setup file can be created using standard MSP430 Flash Programmer software. When setup from the
file is downloaded, then old configuration setup is overwritten. New setup can be modified using
F_GetSetup and F_ConfigSetup functions.
Location path and file name of the config file must be specified.
71