Too many bench test buttons are broken #5327
This commit is contained in:
parent
9207b2fd63
commit
5bdcb84d0a
|
@ -492,11 +492,11 @@ void OutputPin::setOnchipValue(int electricalValue) {
|
|||
}
|
||||
#endif // EFI_PROD_CODE
|
||||
|
||||
void OutputPin::setValue(const char *msg, int logicValue) {
|
||||
setValue(logicValue);
|
||||
void OutputPin::setValue(int logicValue) {
|
||||
setValue(nullptr, logicValue);
|
||||
}
|
||||
|
||||
void OutputPin::setValue(int logicValue) {
|
||||
void OutputPin::setValue(const char *msg, int logicValue) {
|
||||
#if ENABLE_PERF_TRACE
|
||||
// todo: https://github.com/rusefi/rusefi/issues/1638
|
||||
// ScopePerf perf(PE::OutputPinSetValue);
|
||||
|
|
Loading…
Reference in New Issue