From fc10166f97acf6968a9918a3e696ecf537def9b3 Mon Sep 17 00:00:00 2001 From: rusefillc Date: Tue, 23 Nov 2021 07:57:43 -0500 Subject: [PATCH] spelling --- firmware/controllers/system/efi_gpio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/controllers/system/efi_gpio.cpp b/firmware/controllers/system/efi_gpio.cpp index f59b9f3822..5e06b9a1a9 100644 --- a/firmware/controllers/system/efi_gpio.cpp +++ b/firmware/controllers/system/efi_gpio.cpp @@ -565,7 +565,7 @@ void OutputPin::initPin(const char *msg, brain_pin_e brainPin, const pin_output_ // if the pin was set to logical 1, then set an error and disable the pin so that things don't catch fire if (logicalValue) { - firmwareError(OBD_PCM_Processor_Fault, "HARDWARE VALIDATEION FAILED %s: unexpected startup pin state %s actual value=%d logical value=%d mode=%s", msg, hwPortname(brainPin), actualValue, logicalValue, getPin_output_mode_e(*outputMode)); + firmwareError(OBD_PCM_Processor_Fault, "HARDWARE VALIDATION FAILED %s: unexpected startup pin state %s actual value=%d logical value=%d mode=%s", msg, hwPortname(brainPin), actualValue, logicalValue, getPin_output_mode_e(*outputMode)); OutputPin::deInit(); } }