High/src/Enable/Enable.h
2024-07-27 12:53:45 -07:00

28 lines
387 B
C

/**
* @brief PUT_TEXT_HERE
* @details This file is...
* @author username
* @date todays_date
* @copyright None
* @file ENABLE.h
*/
#ifndef ENABLE
#define ENABLE
#define EN1 (1<<2)
#define EN2 (1<<3)
#define EN3 (1<<2)
/**
* Sets all the Enable pins high.
*/
void Enable_SetPinsHigh();
/**
* Sets all the Enable pins low.
*/
void Enable_SetPinsLow();
#endif //ENABLE