Feature request - Variable TCC lock up speed.
-
- Posts: 1696
- Joined: Fri Apr 04, 2008 1:28 pm
Re: Feature request - Variable TCC lock up speed.
-
- Posts: 1696
- Joined: Fri Apr 04, 2008 1:28 pm
Re: Feature request - Variable TCC lock up speed.
The sp0 in the log shows zero whenever the TCC is off, so that's good. When the TCC is enabled (speed above 50, gear above 3, load under 90, etc.). Then sp0 tries to go on, but instead it 'flickers' as you say. That should be an easy fix - I have some ideas about this. I will dig in the code and post here when I have a solution.
Lance.
-
- Posts: 1696
- Joined: Fri Apr 04, 2008 1:28 pm
Re: Feature request - Variable TCC lock up speed.
My apologies! I made an simple cut 'n paste error when putting the spare port updates in (which meant sp0 was shut off whenever sp1 or sp2 should have been shut down). That is fixed in the attached 4.146c test code/INI. Hopefully it will fix the issue. If it doesn't attached another log and I'll keep looking.
Lance.
- Attachments
-
- GPIO_MShift_4146.ini
- (221.43 KiB) Downloaded 633 times
-
- Monitor_4146c.abs.s19
- (73.45 KiB) Downloaded 651 times
-
- Posts: 13
- Joined: Mon Dec 05, 2011 7:47 am
Re: Feature request - Variable TCC lock up speed.
Sp0 seems to be ok on bench. Will look forward to test it on the car tomorrow. Just need a little bit of help here. Hehe. Sp1 and Sp2 not seems to be working as commanded.
Regards,
Doddy
- Attachments
-
- sp1 sp2 test 2014-09-04_00.56.32.msq
- (45.78 KiB) Downloaded 824 times
-
- sp1 sp2 test 2014-09-04_00.56.08.msl
- (167.98 KiB) Downloaded 633 times
-
- Posts: 13
- Joined: Mon Dec 05, 2011 7:47 am
Re: Feature request - Variable TCC lock up speed.
Regards,
Doddy
-
- Posts: 1696
- Joined: Fri Apr 04, 2008 1:28 pm
Re: Feature request - Variable TCC lock up speed.
As much as possible, the limits are in the INI, not the code. So you can adjust the limits with a text editor (notepad.exe, etc.) in any MShift INI file. Open the INI using the test editor and find some lines near line number 255 like:
Code: Select all
#if SI_LENGTHS
minTCCspeed = scalar, U16, 437, "kph", 0.16093, 0.00000, 50, 450, 1 ; minimum TCC lock-up speed (metric)
#else
minTCCspeed = scalar, U16, 437, "mph", 0.10000, 0.00000, 30, 300, 1 ; minimum TCC lock-up speed (imperial)
#endif
Code: Select all
#if SI_LENGTHS
minTCCspeed = scalar, U16, 437, "kph", 0.16093, 0.00000, 30, 450, 1 ; minimum TCC lock-up speed (metric)
#else
minTCCspeed = scalar, U16, 437, "mph", 0.10000, 0.00000, 20, 300, 1 ; minimum TCC lock-up speed (imperial)
#endif
This will be carried forward for all future INIs.
Lance.