View Single Post
      05-14-2017, 03:52 AM   #212
Pierre26
Private First Class
20
Rep
105
Posts

Drives: 2009-335D Pack M
Join Date: Jun 2014
Location: France

iTrader: (0)

Quote:
Originally Posted by 6ixSpd View Post
I've been using this method to make FSC codes for years but now it's driving me nuts.

I downloaded the files in the FSC Generator link on the first page and use FSC.exe from the CIC folder, but whatever code I generate from the hex file is deemed invalid for the CIC. I've attached the a.hex file (and it shows the correct last 7 digits of the VIN of this 2012 X1), can someone take a look and let me know what is going on?

In a second instance, it doesn't prompt me for a log-in when I connect on my GF's 2010 335i. I download the SWT file, trim it, save it, but the VIN shows up as 1234567 instead of the actual VIN. Thoughts?
Just for the first problem you didn't cut the file from the right place !!, beginning with 01 01 20 1b when this must be 00
SO retry finding the right place with 01 01 00 1b if I remember correctly this is the first one
IF this is the usual 1b length (319 bytes) you must see just before that all these data: 1B 00 01 3F 01 00 00 01 01 1B
This means 013F length in Hex or 139 in decimal, the length is repeated an the end of the data.
Some have 42 01 and means that the length is 322 bytes.
I think you have the 319 one as you reached to have your Fsc before, so verify the right cut.
If you don't want a new asked Fsc for the next map just put FF in the index.
Sample of a Fsc.bat script where 2D is for North America and FF LifeTime index and where all yours Files are in C:\EC-APPS\ (location without any space )
Code:
ECHO OFF
CLS
IF NOT EXIST fsc.exe ECHO File fsc.exe NOT FOUND  !
IF NOT EXIST a.hex ECHO a.hex does NOT EXIST !
C:\EC-APPS\Fsc.exe a.hex 0x2D 0xFF > Code.txt
IF %ERRORLEVEL% EQU 0 ECHO File code.txt was created successfully!
PAUSE

Last edited by Pierre26; 05-20-2017 at 06:04 AM..
Appreciate 0