24 lines
476 B
C
24 lines
476 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_CURRENT_PULSE_GANERATOR_11)
|
|
void dev_mode_electrode_switch(uint8_t *ins);
|
|
void dev_mode_set_cpg11_tw1508(uint8_t *ins);
|
|
void dev_mode_ctrl_cpg11_electrodes_task(uint8_t *ins);
|
|
void dev_mode_gpio(uint8_t *ins);
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ! __CPG11_DEV_MODE_H__ */
|