RPM limitation

This is the place to ask general MegaSquirt® questions if you are just getting started.
Please read the FAQ and MegaManual before posting. Also see the Forum Rules. Click this link for Purchasing information.
If you are looking for MS-extra or MS-3 information, please post here: www.msextra.com
Forum rules
Read the manual to see if your question is answered there before posting. Many users will not reply if the answer is already available in the manual.

If your question is about troubleshooting, configuration, or tuning, you MUST include your processor type (MS-I or MS-II) and code version in your post. If your question is about PCB assembly or modifications, you must also include the main board version number (1.01, 2.2 or 3.0).

If you have questions about MS1/Extra or MS2/Extra code configuration or tuning, please post them at www.msextra.com Such questions posted here will be moved to: a temporary MSextra sub-forum, where they will be removed after 7 days

The full forum rules are here: Forum Rules, be sure to read them all regularly.
Post Reply
Flatblackfanatic
MegaSquirt Newbie
Posts: 7
Joined: Sun Sep 11, 2011 4:35 pm

RPM limitation

Post by Flatblackfanatic »

Hey I am using tunerstudio MS and I am limited to an 8000rpm operating range, what if I want to run up to 10000rpm?
is this internal to the MSII or is it in the software?
Bernard Fife
Master Squirter
Posts: 475
Joined: Thu Oct 29, 2009 12:54 pm

Re: RPM limitation

Post by Bernard Fife »

Fbf,

The code is good (in theory) up to 65535 rpm.

8000 is not a limit, it is just the maximum on the gauge that TS shows. The controller will happily exceed that and nothing bad will happen because of the gauge. However, you can set the gauge to show whatever range you like. You edit the INI to do this. Using a text editor (like notepad.exe) find a line in the [GaugeConfigurations] section of the mainController.ini like this:

Code: Select all

   tachometer        = rpm,           "Engine Speed",       "RPM",     0,  8000,    300,   500, 5000, 6000, 0, 0
then change "8000" to 10000 or any other value you prefer. You can also change the "5000" and "6000" values too, if you want to alter the engine speeds at which the warning and danger colors are displayed on the gauge. So you might end up with something like this:

Code: Select all

   tachometer        = rpm,           "Engine Speed",       "RPM",     0, 10000,    300,   500, 9000, 9500, 0, 0
Save the file, then check that the gauge is configured how you prefer, and go and drive!

There is more info on the field values for the gauges in the INI itself.

Lance.
"Never wrestle with pigs. You both get dirty and the pig likes it.” - George Bernard Shaw
Flatblackfanatic
MegaSquirt Newbie
Posts: 7
Joined: Sun Sep 11, 2011 4:35 pm

Re: RPM limitation

Post by Flatblackfanatic »

Perfect. Got it all set. now what about the ignition table? Is it just going to be course jumps between every 834rpm increment in my case or does the MSII compute the difference between the tables?
Bernard Fife
Master Squirter
Posts: 475
Joined: Thu Oct 29, 2009 12:54 pm

Re: RPM limitation

Post by Bernard Fife »

Fbf,

Megasquirt-II interpolates between the rpm and load bins for both fuel and spark advance, so the curves are smooth (to the limit of the digital resolution - typically many times higher than the actual value being computed). You can also move the rpm and load bins around to suit your application.

Lance.
"Never wrestle with pigs. You both get dirty and the pig likes it.” - George Bernard Shaw
Flatblackfanatic
MegaSquirt Newbie
Posts: 7
Joined: Sun Sep 11, 2011 4:35 pm

Re: RPM limitation

Post by Flatblackfanatic »

Thanks, Lance.
Post Reply