PJSC(Pump Jet Solenoid Controller)はArduinoを使用したバイク用燃料噴射コントローラです。このプロジェクトは、オープンソースECUプロジェクト『Speeduino』をベースにしています。
[PJSC v1.01c] Pending Test mode for MUX3 and MUX4 output.
| @@ -2574,8 +2574,8 @@ | ||
| 2574 | 2574 | commandButton = "Stop Test Mode", cmdStopTestMode,{testactive}, clickOnCloseIfEnabled |
| 2575 | 2575 | |
| 2576 | 2576 | dialog = enablefuelpumpbuttons, "Fuel pump", xAxis ;[PJSC v1.10] |
| 2577 | - commandButton = "Fuel Pump On", cmdfpon ;[PJSC v1.10] | |
| 2578 | - commandButton = "Fuel Pump Off", cmdfpoff ;[PJSC v1.10] | |
| 2577 | + commandButton = "Fuel Pump On", cmdfpon, { muxout1selection == 4 || muxout2selection == 4 } ;[PJSC v1.01c] | |
| 2578 | + commandButton = "Fuel Pump Off", cmdfpoff, { muxout1selection == 4 || muxout2selection == 4 } ;[PJSC v1.01c] | |
| 2579 | 2579 | |
| 2580 | 2580 | dialog = outputtestinj1, "Injector CH1", yAxis |
| 2581 | 2581 | commandButton = "Off", cmdtestinj1off,{testactive} |
| @@ -2635,36 +2635,36 @@ | ||
| 2635 | 2635 | panel = outputtestspk3 |
| 2636 | 2636 | panel = outputtestspk4 |
| 2637 | 2637 | |
| 2638 | - dialog = outputtestmux1, "MUX1", yAxis ;[PJSC v1.01c] | |
| 2639 | - commandButton = "Off", cmdtestmux1off, {testactive} ; | | |
| 2640 | - commandButton = "On", cmdtestmux1on, {!testenabled & testactive} ; | | |
| 2641 | - commandButton = "PWM", cmdtestmux150dc, {!testenabled & testactive} ; | | |
| 2642 | - field = "PWM freq.", dutyFreqTst9, {!testenabled & testactive} ; | | |
| 2643 | - field = "Duty ratio", dutyRatioTst9, {!testenabled & testactive} ; | | |
| 2644 | - dialog = outputtestmux2, "MUX2", yAxis ; | | |
| 2645 | - commandButton = "Off", cmdtestmux2off, {testactive} ; | | |
| 2646 | - commandButton = "On", cmdtestmux2on, {!testenabled & testactive} ; | | |
| 2647 | - commandButton = "PWM", cmdtestmux250dc, {!testenabled & testactive} ; | | |
| 2648 | - field = "PWM freq.", dutyFreqTst10, {!testenabled & testactive} ; | | |
| 2649 | - field = "Duty ratio", dutyRatioTst10, {!testenabled & testactive} ; | | |
| 2650 | - dialog = outputtestmux3, "MUX3", yAxis ; | | |
| 2651 | - commandButton = "Off", cmdtestmux3off, {testactive && pinLayout == 64} ; | | |
| 2652 | - commandButton = "On", cmdtestmux3on, {!testenabled && testactive && pinLayout == 64} ; | | |
| 2653 | - commandButton = "PWM", cmdtestmux350dc, {!testenabled && testactive && pinLayout == 64} ; | | |
| 2654 | - field = "PWM freq.", dutyFreqTst11, {!testenabled && testactive && pinLayout == 64} ; | | |
| 2655 | - field = "Duty ratio", dutyRatioTst11, {!testenabled && testactive && pinLayout == 64} ; | | |
| 2656 | - dialog = outputtestmux4, "MUX4", yAxis ; | | |
| 2657 | - commandButton = "Off", cmdtestmux4off, {testactive && pinLayout == 64} ; | | |
| 2658 | - commandButton = "On", cmdtestmux4on, {!testenabled && testactive && pinLayout == 64} ; | | |
| 2659 | - commandButton = "PWM", cmdtestmux450dc, {!testenabled && testactive && pinLayout == 64} ; | | |
| 2660 | - field = "PWM freq.", dutyFreqTst12, {!testenabled && testactive && pinLayout == 64} ; | | |
| 2661 | - field = "Duty ratio", dutyRatioTst12, {!testenabled && testactive && pinLayout == 64} ; | | |
| 2662 | - ; | | |
| 2663 | - dialog = outputtest_mux, "MUX Output Test", xAxis ; | | |
| 2664 | - panel = outputtestmux1 ; | | |
| 2665 | - panel = outputtestmux2 ; | | |
| 2666 | - panel = outputtestmux3, { pinLayout == 64 } ; V | |
| 2667 | - panel = outputtestmux4, { pinLayout == 64 } ;[PJSC v1.01c] | |
| 2638 | + dialog = outputtestmux1, "MUX1", yAxis ;[PJSC v1.01c] | |
| 2639 | + commandButton = "Off", cmdtestmux1off, {testactive} ; | | |
| 2640 | + commandButton = "On", cmdtestmux1on, {!testenabled && testactive && muxout1selection == 0 } ; | | |
| 2641 | + commandButton = "PWM", cmdtestmux150dc, {!testenabled && testactive && muxout1selection == 0 } ; | | |
| 2642 | + field = "PWM freq.", dutyFreqTst9, {!testenabled && testactive && muxout1selection == 0 } ; | | |
| 2643 | + field = "Duty ratio", dutyRatioTst9, {!testenabled && testactive && muxout1selection == 0 } ; | | |
| 2644 | + dialog = outputtestmux2, "MUX2", yAxis ; | | |
| 2645 | + commandButton = "Off", cmdtestmux2off, {testactive} ; | | |
| 2646 | + commandButton = "On", cmdtestmux2on, {!testenabled && testactive && muxout2selection == 0 } ; | | |
| 2647 | + commandButton = "PWM", cmdtestmux250dc, {!testenabled && testactive && muxout2selection == 0 } ; | | |
| 2648 | + field = "PWM freq.", dutyFreqTst10, {!testenabled && testactive && muxout2selection == 0 } ; | | |
| 2649 | + field = "Duty ratio", dutyRatioTst10, {!testenabled && testactive && muxout2selection == 0 } ; | | |
| 2650 | + dialog = outputtestmux3, "MUX3", yAxis ; | | |
| 2651 | + commandButton = "Off", cmdtestmux3off, {testactive && pinLayout == 64} ; | | |
| 2652 | + commandButton = "On", cmdtestmux3on, {!testenabled && testactive && muxout3selection == 0 && pinLayout == 64} ; | | |
| 2653 | +; commandButton = "PWM", cmdtestmux350dc, {!testenabled && testactive && muxout3selection == 0 && pinLayout == 64} ; | | |
| 2654 | +; field = "PWM freq.", dutyFreqTst11, {!testenabled && testactive && muxout3selection == 0 && pinLayout == 64} ; | | |
| 2655 | +; field = "Duty ratio", dutyRatioTst11, {!testenabled && testactive && muxout3selection == 0 && pinLayout == 64} ; | | |
| 2656 | + dialog = outputtestmux4, "MUX4", yAxis ; | | |
| 2657 | + commandButton = "Off", cmdtestmux4off, {testactive && pinLayout == 64} ; | | |
| 2658 | + commandButton = "On", cmdtestmux4on, {!testenabled && testactive && muxout4selection == 0 && pinLayout == 64} ; | | |
| 2659 | +; commandButton = "PWM", cmdtestmux450dc, {!testenabled && testactive && muxout4selection == 0 && pinLayout == 64} ; | | |
| 2660 | +; field = "PWM freq.", dutyFreqTst12, {!testenabled && testactive && muxout4selection == 0 && pinLayout == 64} ; | | |
| 2661 | +; field = "Duty ratio", dutyRatioTst12, {!testenabled && testactive && muxout4selection == 0 && pinLayout == 64} ; | | |
| 2662 | + ; | | |
| 2663 | + dialog = outputtest_mux, "MUX Output Test", xAxis ; | | |
| 2664 | + panel = outputtestmux1 ; | | |
| 2665 | + panel = outputtestmux2 ; | | |
| 2666 | + panel = outputtestmux3, { pinLayout == 64 } ; V | |
| 2667 | + panel = outputtestmux4, { pinLayout == 64 } ;[PJSC v1.01c] | |
| 2668 | 2668 | |
| 2669 | 2669 | ;[PJSC v1.10] dialog = outputtest1,"Test Output Hardware" |
| 2670 | 2670 | dialog = outputtest1,"Output Test Mode - PWM" ;[PJSC v1.10] |