Too many bench test buttons are broken #5327

This commit is contained in:
Andrey 2023-06-15 19:30:46 -04:00
parent 9207b2fd63
commit 5bdcb84d0a
1 changed files with 3 additions and 3 deletions

View File

@ -492,11 +492,11 @@ void OutputPin::setOnchipValue(int electricalValue) {
} }
#endif // EFI_PROD_CODE #endif // EFI_PROD_CODE
void OutputPin::setValue(const char *msg, int logicValue) { void OutputPin::setValue(int logicValue) {
setValue(logicValue); setValue(nullptr, logicValue);
} }
void OutputPin::setValue(int logicValue) { void OutputPin::setValue(const char *msg, int logicValue) {
#if ENABLE_PERF_TRACE #if ENABLE_PERF_TRACE
// todo: https://github.com/rusefi/rusefi/issues/1638 // todo: https://github.com/rusefi/rusefi/issues/1638
// ScopePerf perf(PE::OutputPinSetValue); // ScopePerf perf(PE::OutputPinSetValue);