style unification

This commit is contained in:
rusefillc 2023-04-19 16:41:09 -04:00
parent 1a354c7def
commit b149578bab
1 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ static int getDacValue(uint8_t voltage) {
return (int)efiRound(maxDacValue * (float)voltage * VOLTAGE_1_BYTE_PACKING_DIV / engineConfiguration->adcVcc, 1.0f);
}
void startTriggerInputPins(void) {
void startTriggerInputPins() {
//efiAssertVoid(CUSTOM_ERR_, !isCompEnabled, "isCompEnabled");
if (isCompEnabled) {
efiPrintf("startTIPins(): already enabled!");
@ -139,7 +139,7 @@ void startTriggerInputPins(void) {
isCompEnabled = true;
}
void stopTriggerInputPins(void) {
void stopTriggerInputPins() {
if (!isCompEnabled) {
efiPrintf("stopTIPins(): already disabled!");
return;