28 lines
387 B
C
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
|