style unification
This commit is contained in:
parent
1a354c7def
commit
b149578bab
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue