• 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

Revision21 (tree)
Time2018-08-31 17:12:15
Authormaharu

Log Message

Support 2nd VE table

Change Summary

Incremental Difference

--- branches/Ver1.00_base/reference/PJSC.ini (revision 20)
+++ branches/Ver1.00_base/reference/PJSC.ini (revision 21)
@@ -846,15 +846,7 @@
846846 ; name = scalar, type, offset, units, scale, translate, lo, hi, digits
847847 veTable2 = array, U08, 0, [16x16],"%", 1.0, 0.0, 0.0, 255.0, 0
848848 rpmBinsVE2 = array, U08, 256, [ 16], "RPM", 100.0, 0.0, 100.0, 25500.0, 0
849- #if SPEED_DENSITY
850- ;mapBins = array, U08, 272, [ 16], "kPa", 1.0, 0.0, 0.0, 255.0, 0
851- mapBinsVE2 = array, U08, 272, [ 16], "kPa", 2.0, 0.0, 0.0, 511.0, 0
852- #elif ALPHA_N
853- tpsBinsVE2 = array, U08, 272, [ 16], "TPS", 1.0, 0.0, 0.0, 100.0, 0
854- #elif AIR_FLOW_METER
855- #error "Speeduino does not support MAF"
856- ;#exit
857- #endif
849+ fuelLoadBins2 = array, U08, 272, [ 16], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0
858850
859851 ;-------------------------------------------------------------------------------
860852
@@ -2633,16 +2625,13 @@
26332625 topicHelp = "http://speeduino.com/wiki/index.php/Tuning"
26342626 ; constant, variable
26352627 xBins = rpmBinsVE2, rpm
2636- #if SPEED_DENSITY
2637- yBins = mapBinsVE2, map
2638- #else
2639- yBins = tpsBinsVE2, throttle
2640- #endif
2628+ yBins = fuelLoadBins2, fuelLoad
26412629 zBins = veTable2
26422630
26432631 gridHeight = 2.0
26442632 gridOrient = 250, 0, 340 ; Space 123 rotation of grid in degrees.
26452633 upDownLabel = "(RICHER)", "(LEANER)"
2634+
26462635 ;[PJSC]-------------------------------------------------------------------------
26472636
26482637 ;-------------------------------------------------------------------------------
@@ -3088,3 +3077,25 @@
30883077
30893078 ; filter = maxTPSFilter, "High Throttle", tps, < , 15, , true
30903079 ;------------- WUE VEAL not currently working ----------------
3080+
3081+;[PJSC]------------------------------------------------------------------------
3082+; tableName, lambdaTargetTableName, lambdaChannel, egoCorrectionChannel, activeCondition
3083+ veAnalyzeMap = veTable2Tbl, afrTable1Tbl, afr, egoCorrection
3084+ lambdaTargetTables = afrTable1Tbl, afrTSCustom,
3085+ filter = std_xAxisMin ; Auto build with appropriate axis channels
3086+ ;filter = minRPMFilter, "Minimum RPM", rpm, < , 500, , true
3087+ filter = std_xAxisMax ; Auto build with appropriate axis channels
3088+ filter = std_yAxisMin ; Auto build with appropriate axis channels
3089+ filter = std_yAxisMax ; Auto build with appropriate axis channels
3090+ filter = std_DeadLambda ; Auto build
3091+
3092+#if CELSIUS
3093+ filter = minCltFilter, "Minimum CLT", coolant, < , 71, , true
3094+#else
3095+ filter = minCltFilter, "Minimum CLT", coolant, < , 160, , true
3096+#endif
3097+ filter = accelFilter, "Accel Flag" , engine, & , 16, , false
3098+ filter = aseFilter, "ASE Flag" , engine, & , 4, , false
3099+ filter = overrunFilter, "Overrun" , pulseWidth, = , 0, , false
3100+ filter = std_Custom ; Standard Custom Expression Filter.
3101+;[PJSC]-------------------------------------------------------------------------