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.
17 lines
329 B
17 lines
329 B
#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 P67
|
|
#define GM35_DISABLE() GM35_VBAT_EN = 0
|
|
#define GM35_ENABLE() GM35_VBAT_EN = 1
|
|
|
|
|
|
extern void L2_gm35_init();
|
|
extern void L2_gm35_enable();
|
|
extern void L2_gm35_disable();
|
|
|
|
#endif
|