Skip to content

Commit

Permalink
Ignore CD TE errors on 50k
Browse files Browse the repository at this point in the history
  • Loading branch information
AKuHAK committed Aug 11, 2024
1 parent 55e26fe commit 4c67506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/elect.c
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ static int ElectJudgeCDTELoopGain(const char *result, int len)
else
{
PlatShowEMessage("CD TE LOOP GAIN NG: %d\n", value);
return (ConSlim == 1) ? 0 : 1;
return ((ConSlim == 1) || (ConType == MECHA_TYPE_40)) ? 0 : 1;
}
}

Expand Down

0 comments on commit 4c67506

Please sign in to comment.