25 lines
508 B
C
25 lines
508 B
C
#ifndef __CPG11_DEV_MODE_H__
|
|
#define __CPG11_DEV_MODE_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#include "app_button.h"
|
|
#include "elite_board.h"
|
|
|
|
#if (DEF_ELITE_MODEL == DEF_ELITE_CPG_V1_1)
|
|
void dev_mode_electrode_switch(uint8_t *ins);
|
|
void dev_mode_tw1508(uint8_t *ins);
|
|
void dev_mode_ctrl_cpg11_electrodes_task(uint8_t *ins);
|
|
void dev_mode_adapter_block_switch(uint8_t *ins);
|
|
void dev_mode_gpio(uint8_t *ins);
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ! __CPG11_DEV_MODE_H__ */
|