removed relay function prototype for toggling state.
This commit is contained in:
parent
fe20ad2fb0
commit
85e7f69c07
|
@ -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; }
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue