• R/O
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

PJSC(Pump Jet Solenoid Controller)はArduinoを使用したバイク用燃料噴射コントローラです。このプロジェクトは、オープンソースECUプロジェクト『Speeduino』をベースにしています。


Commit MetaInfo

Revision123 (tree)
Time2021-05-16 23:45:32
Authormaharu

Log Message

[PJSC v1.03]VEテーブルの負荷軸にMAPを選択しても、値の上限が100になってしまう問題を修正

Change Summary

Incremental Difference

--- branches/Ver1.03/reference/PJSC.ini (revision 122)
+++ branches/Ver1.03/reference/PJSC.ini (revision 123)
@@ -4206,8 +4206,9 @@
42064206 ;fuelLoadMax = { arrayValue(algorithmLimits , algorithm) } ;Doesn't work, no idea why.
42074207 ;[PJSC vv1.01] fuelLoadMax = { (algorithm == 0 || algorithm == 2) ? 511 : 100 }
42084208 ;[PJSC vv1.01] ignLoadMax = { (ignAlgorithm == 0 || ignAlgorithm == 2) ? 511 : 100 }
4209- fuelLoadMax = { (algorithm == 0 || algorithm == 2) ? 255 : 100 }
4210- ignLoadMax = { (ignAlgorithm == 0 || ignAlgorithm == 2) ? 255 : 100 }
4209+;[PJSC v1.03] fuelLoadMax = { (algorithm == 0 || algorithm == 2) ? 255 : 100 }
4210+ fuelLoadMax = { (algorithm == 0 || algorithm == 2) ? 255 : 255 }
4211+ ignLoadMax = { (ignAlgorithm == 0 || ignAlgorithm == 2) ? 255 : 255 }
42114212
42124213 boostTableLimit = { boostType == 0 ? 100 : 511 } ;The maximum value allowed in the boost table. 100 is used for duty cycle, 511 for kpa
42134214