
How to update FW

   (1)r2616
       Double click gFirmwareUpdateTool_r2616.exeh
       After finished, please check gTPCFirmUpdate.txth in the same folder.
       If 1st line shows g2616h, firmware update is succeeded.
       If other information shows, firmware update is failed.

    Cf.Sample bat file as bellow checks whether FW is correct
       or not after FirmwareUpdateTool_r2616.exe executed.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
@echo off
del TPCFirmUpdate.txt
start /b /wait FirmwareUpdateTool_r2616.exe
find "2616" TPCFirmUpdate.txt
if %ERRORLEVEL% == 0 GOTO OK
echo ERROR
goto :EXIT
:OK
echo OK
:EXIT
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

       [Successed]
       >chgFW.bat

       ---------- TPCFIRMUPDATE.TXT
       2616
       OK

       [Error]
       >chgFW.bat
       File not found - TPCFIRMUPDATE.TXT
       ERROR

