Page 1 of 1

Nissan/Infinti MAP sensor #22365-9E010 lookup table

Posted: Mon Jan 21, 2013 3:30 pm
by UNISA JECS
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?

Image

Image

Re: Nissan/Infinti MAP sensor #22365-9E010 lookup table

Posted: Mon Jan 21, 2013 10:37 pm
by Matt
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?

Re: Nissan/Infinti MAP sensor #22365-9E010 lookup table

Posted: Tue Jan 22, 2013 3:38 am
by UNISA JECS
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

Image