Memory Starter Kit Command Line Utility V01.00.01, Aug 08
*********************************************************

	This utility enables the user to perform Write/Read/Verify/Erase for the EEPROM devices from command line. 
It accepts the command line argument for the selection of device and other information. 
Following are the command line options.

Command Set:
-----------
Sino.	Function			Command			 Default
--------------------------------------------------------------------------------------
1.	Device 				-P<Device name> 	  None
2.	Voltage				-T<3.3V or 5V>		  5V
3.	SPI Mode			-R<0 or 1>		  0 
4.	Config bit BP0			-BP0			  0 (Applicable only for Write cmd)
5.	Config bit BP1			-BP1			  0 (Applicable only for Write cmd)
6.	Config bit WPEN			-WPEN			  0 (Applicable only for Write cmd)
7.	93xx device 16 bit support 	-X8 or X16		  X8
8.	Read to file			-GF<filename.hex>	  None
9.	Read to Display			-G [E-EEPROM][C-Config]	  None
10.	Write from file			-MF<filename.hex> 	  None
11.	Write Constant			-MC<0xdata>		  None
12.	Erase				-E			  None
13.	Verify				-YF<filename.hex>	  None
14.	Help				-?			  None

Note: Commands are not case sensitive. Escape character can be a - or  /.  
-----


Requirements : Installation of MPLAB Memory Starter Kit Version. (MPLAB V8.12 or Higher)
--------------


Test Utility:
-------------
	UTest.Bat is the Test utility for command line interface. This utility performs Write, Read, Verify and Erase operation for the specified device using MSK command line utility.

	Format:
		UTest.Bat  PartName  option1 option2  option6

	Example:
		UTest.Bat 11LC160 BP1 BP2


MSK CMD Utility Examples:
--------------------------
Write:
-----
	Write from File:
		MSKCMD P24LC16B T5V MFC:\HexData.hex	

	Write Constant:
		MSKCMD P24LC16B T5V MC0x55                   (8 Bit Data)

		MSKCMD P93LC46B T5V X16 MC0xAA55		(16 Bit Data)

	Write with Full Write Protect Enabled:
		MSKCMD P25LC040A T5V BP0 BP1 WPEN MC0x55           

	Write with SPI Mode 1:
		MSKCMD P25LC040A T5V R1 MC0x55           

Read:
-----
	Read to File:
		MSKCMD P24LC16B T5V GFC:\ReadData.hex

	Read EEPROM to Display :
		MSKCMD P24LC16B T5V GE
	
	Read Config to Display :
		MSKCMD P24LC16B T5V GC

Verify:
-------	
	Verify Data from File:
		MSKCMD P24LC16B T5V YFC:\ReadData.hex

Erase:
------
	Erase Entire Device:
		MSKCMD P11LC160 T5V E





