14 lines
195 B
C
14 lines
195 B
C
#pragma once
|
|
#ifndef __BTN_H__
|
|
#define __BTN_H__
|
|
|
|
#include "app_config.h"
|
|
|
|
#if (DEF_BTN_ENABLED)
|
|
void btn_init(void);
|
|
#else
|
|
#define btn_init()
|
|
#endif /* DEF_BTN_ENABLED */
|
|
|
|
#endif // !__BTN_H__
|