1. config.txt is an example of how to write the config file

2. type the following to run image creator:
imgCreate -c <configuration file> -o <output file>

ex.
imgCreate -c config.txt -o image

3. if no parameter then imgCreate take default names
configuration file = config.txt
image output = image

4. Convert binary to .coe file. The purpose of .ceo file is to init ROM image in FPGA. (ver:1.0.0.1009 / SVN Revision:35794)
   Ex: imgCreate.exe -coe image -o image.coe
   
5. Convert final image(created step2.) to RAW_Image. Previously we read the SPI flash for RAW_Image.
   imgCreate.exe -RAW <image file name> -o <output file name, default:image_RAW.bin> -s <flash size. Unit: KB, default:512KB>
   Ex: imgCreate.exe -RAW Image -o image.raw -s 256  // Create a 256KB RAW_Image(called image.raw) by Image
   Ex: imgCreate.exe -RAW Image                      // Create a 512KB RAW_Image(called image_RAW.bin) by Image
