Single channel 3 cyl ignition now produces 3 pulses per 720 crank deg (4 stroke only)

This commit is contained in:
Josh Stewart 2018-09-11 16:37:40 +10:00
parent b903f42093
commit 91a46210e7
1 changed files with 2 additions and 1 deletions

View File

@ -401,7 +401,8 @@ void setup()
maxIgnOutputs = 3;
if (configPage2.engineType == EVEN_FIRE )
{
if( (configPage4.sparkMode == IGN_MODE_SEQUENTIAL) && (configPage2.strokes == FOUR_STROKE) )
//Sequential and Single channel modes both run over 720 crank degrees, but only on 4 stroke engines.
if( ( (configPage4.sparkMode == IGN_MODE_SEQUENTIAL) || (configPage4.sparkMode == IGN_MODE_SINGLE) ) && (configPage2.strokes == FOUR_STROKE) )
{
channel2IgnDegrees = 240;
channel3IgnDegrees = 480;