2024-09-23 09:46:18 +08:00
|
|
|
#ifndef __CPG11_DEV_MODE_H__
|
|
|
|
|
#define __CPG11_DEV_MODE_H__
|
2024-08-08 16:59:03 +08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C"
|
|
|
|
|
{
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "app_button.h"
|
|
|
|
|
#include "elite_board.h"
|
|
|
|
|
|
2024-10-01 16:10:30 +08:00
|
|
|
#if (DEF_ELITE_MODEL == DEF_ELITE_CPG_V1_1)
|
2024-09-24 09:45:36 +08:00
|
|
|
void dev_mode_electrode_switch(uint8_t *ins);
|
2024-09-25 11:57:11 +08:00
|
|
|
void dev_mode_tw1508(uint8_t *ins);
|
2024-08-08 16:59:03 +08:00
|
|
|
void dev_mode_ctrl_cpg11_electrodes_task(uint8_t *ins);
|
2024-09-25 17:24:09 +08:00
|
|
|
void dev_mode_adapter_block_switch(uint8_t *ins);
|
2024-09-25 10:34:14 +08:00
|
|
|
void dev_mode_gpio(uint8_t *ins);
|
2024-08-08 16:59:03 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2024-09-23 09:46:18 +08:00
|
|
|
#endif /* ! __CPG11_DEV_MODE_H__ */
|