So I decided to use my stock MAP sensor (22365-9E010) that was on my 1999 Infiniti G20t P11 to help create my FUEL and TIMING MAP
Hey Matt is it possibly to rename the lookup tables ao I can make it say boost like I did in Logworks?
Nissan/Infinti MAP sensor #22365-9E010 lookup table
Moderator: Matt
-
- Posts: 367
- Joined: Wed Jun 04, 2008 3:48 am
- Location: USA Socal
Re: Nissan/Infinti MAP sensor #22365-9E010 lookup table
Nistune pulls the names of each Auxillary value from the Innovate MTS DLL
Innovate MTS names should be reflected in Nistune after you change the name in logworks. Try restarting Nistune and reconnect. I just verified this with the code:
m_pSelImageView->MTSctrl.SetCurrentInput(i);
input_table.name = m_pSelImageView->MTSctrl.GetInputName();
input_table.mts_name = m_pSelImageView->MTSctrl.GetInputDeviceName();
This is put into the Nistune debug log file. Does your 'boost' show up as Input name or Device name?
Trace(_T(">Input name: %s\n"), input_table.name);
Trace(_T(">Input type: %d\n"), input_table.type);
Trace(_T(">Device name: %s\n"), input_table.mts_name);
We allocate 'input_table.name' as the display name in Nistune. Perhaps I should use the MTS device name instead?
Innovate MTS names should be reflected in Nistune after you change the name in logworks. Try restarting Nistune and reconnect. I just verified this with the code:
m_pSelImageView->MTSctrl.SetCurrentInput(i);
input_table.name = m_pSelImageView->MTSctrl.GetInputName();
input_table.mts_name = m_pSelImageView->MTSctrl.GetInputDeviceName();
This is put into the Nistune debug log file. Does your 'boost' show up as Input name or Device name?
Trace(_T(">Input name: %s\n"), input_table.name);
Trace(_T(">Input type: %d\n"), input_table.type);
Trace(_T(">Device name: %s\n"), input_table.mts_name);
We allocate 'input_table.name' as the display name in Nistune. Perhaps I should use the MTS device name instead?
-
- Posts: 367
- Joined: Wed Jun 04, 2008 3:48 am
- Location: USA Socal
Re: Nissan/Infinti MAP sensor #22365-9E010 lookup table
Matt wrote:Nistune pulls the names of each Auxillary value from the Innovate MTS DLL
Innovate MTS names should be reflected in Nistune after you change the name in logworks. Try restarting Nistune and reconnect. I just verified this with the code:
m_pSelImageView->MTSctrl.SetCurrentInput(i);
input_table.name = m_pSelImageView->MTSctrl.GetInputName();
input_table.mts_name = m_pSelImageView->MTSctrl.GetInputDeviceName();
This is put into the Nistune debug log file. Does your 'boost' show up as Input name or Device name?
Trace(_T(">Input name: %s\n"), input_table.name);
Trace(_T(">Input type: %d\n"), input_table.type);
Trace(_T(">Device name: %s\n"), input_table.mts_name);
We allocate 'input_table.name' as the display name in Nistune. Perhaps I should use the MTS device name instead?
I'll do some more testing today to make sure, I do remember back in 2008 that Nistune would read "BOOST" if I had changed the name in logworks, i'll have to check later on today.
Input name Matt