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.
15 lines
266 B
15 lines
266 B
#ifndef BSP_GM35_H
|
|
#define BSP_GM35_H
|
|
|
|
#include "bsp_config.h"
|
|
|
|
#define W600_VBAT_EN P67
|
|
#define W600_DISABLE() W600_VBAT_EN = 0
|
|
#define W600_ENABLE() W600_VBAT_EN = 1
|
|
|
|
|
|
extern void L2_w600_init();
|
|
extern void L2_w600_enable();
|
|
extern void L2_w600_disable();
|
|
|
|
#endif
|