He's running 1.0.73
I have been on MSN trying to help. Im miffed as well
I will be honest and say i may not have helped, but things went bad when the software crashed, found it realy confusing to follow this procedure, for us non software orientated people
The tempsensor_2252_256_upload.bat file is as follows and works perfectly fine for me
__________________________________________________________
@echo off
echo Will upload 1.0.73 firmware + your chosen temp factor files
echo usage: tempsensor_upload.bat air-ohm clt-ohm aref
echo WARNING: Overwrites your current firmware in your ECU
echo ctrl-c to abort
echo -----------------------------------------------------------------------
pause
if exist Tools\ntc_airX_cltfactor\airXfactor_2252_256.hex (
if exist Tools\ntc_airX_cltfactor\cltfactor_2252_256.hex (
if exist firmware\upload.hex del firmware\upload.hex
type Tools\ntc_airX_cltfactor\airXfactor_2252_256.hex > temppatch.hex
type Tools\ntc_airX_cltfactor\cltfactor_2252_256.hex >> temppatch.hex
Tools\ntc_airX_cltfactor\hexpatch.exe firmware\vems.hex < temppatch.hex > firmware\upload.hex
del temppatch.hex
)) else ( echo Missing files)
if exist firmware\upload.hex (
tools\megaloader.exe firmware\upload.hex -wtE 38400 -c com1
) else (
echo Patch Failed )
pause