removed relay function prototype for toggling state.

This commit is contained in:
jakeg00dwin 2024-09-01 13:20:36 -07:00
parent fe20ad2fb0
commit 85e7f69c07
2 changed files with 2 additions and 6 deletions

View File

@ -25,4 +25,6 @@ void Relay_Disable(Relay *relay) {
(*(uint8_t *)relay->output_port) &= ~(1 << (relay->output_pin));
}
void Relay_DisableForPowerCycle(Relay *relay) { relay->disabled_fpc = true; }

View File

@ -42,12 +42,6 @@ void Relay_MeasureMakeTime(Relay *relay);
*/
void Relay_MeasureBreakTime(Relay *relay);
/**
* Changes the current state to the opposite one.
* @param relay A pointer to an Relay stucture instance.
*/
void Relay_ToggleState(Relay *relay);
/**
* Enables or activates the relay. If the relay has been disabled
* for this power cycle it will do nothing.