This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TIDA-01604: GPIO_PROFILING1 56和GPIO_PROFILING2 57具体是用来做什么的

Part Number: TIDA-01604
GPIO_PROFILING1 56和GPIO_PROFILING2 57具体是用来做什么的
在pfc1ph3ilttpl_user_settings.h中
#define GPIO_PROFILING1 56
#define GPIO_PROFILING1_SET GPIO_GPBSET_GPIO56
#define GPIO_PROFILING1_CLEAR GPIO_GPBCLEAR_GPIO56
#define GPIO_PROFILING1_PIN_CONFIG GPIO_56_GPIO56

#define GPIO_PROFILING2 57
#define GPIO_PROFILING2_SET GPIO_GPBSET_GPIO57
#define GPIO_PROFILING2_CLEAR GPIO_GPBCLEAR_GPIO57
#define GPIO_PROFILING2_PIN_CONFIG GPIO_57_GPIO57
在pfc1ph3ilttpl_board.c中
//TODO setupProfilingGPIO()
void setupProfilingGPIO(void)
{
    GPIO_setDirectionMode(GPIO_PROFILING1,GPIO_DIR_MODE_OUT);
    GPIO_setDirectionMode(GPIO_PROFILING2,GPIO_DIR_MODE_OUT);
    GPIO_setQualificationMode(GPIO_PROFILING1,GPIO_QUAL_SYNC);
    GPIO_setQualificationMode(GPIO_PROFILING2,GPIO_QUAL_SYNC);
    GPIO_setPinConfig(GPIO_PROFILING1_PIN_CONFIG);
    GPIO_setPinConfig(GPIO_PROFILING2_PIN_CONFIG);

#if CONTROL_RUNNING_ON==CLA_CORE
    GPIO_setMasterCore(GPIO_PROFILING1, GPIO_CORE_CPU1_CLA1);
    GPIO_setMasterCore(GPIO_PROFILING2, GPIO_CORE_CPU1_CLA1);
#endif
}
这两个gpio口在原理图上并没有实质功能或器件相连接