forked from ccsens_hardware/stc_touch_pen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
329 B
16 lines
329 B
3 years ago
|
#ifndef BSP_GM35_H
|
||
|
#define BSP_GM35_H
|
||
|
|
||
|
#include "../cpu/STC_stc8a8k.h"
|
||
|
#include "../cpu/c51_macro.h"
|
||
|
#include "../clib/bit.h"
|
||
|
|
||
|
#define GM35_VBAT_EN P07
|
||
|
#define GM35_DISABLE() GM35_VBAT_EN = 1
|
||
|
#define GM35_ENABLE() GM35_VBAT_EN = 0
|
||
|
|
||
|
extern void L2_gm35_init();
|
||
|
extern void L2_gm35_enable();
|
||
|
extern void L2_gm35_disable();
|
||
|
|
||
|
#endif
|