10 lines
171 B
C
10 lines
171 B
C
#ifndef _USR_CONFIG_H_
|
|
#define _USR_CONFIG_H_
|
|
|
|
#define USR_TRUE (1U)
|
|
#define USR_FALSE (0U)
|
|
|
|
#define USR_ENABLE (1U)
|
|
#define USR_DISENABLE (0U)
|
|
#endif
|