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.

[CC2640R2F] 为什么我无法使用Registers窗口查看TIMER寄存器的变化?



  我按照PWM历程在Project_init中加入了PWM初始化配置的下述代码后,为什么我在debug调试过程中无法使用Registers窗口查看TIMER寄存器的变化?
//PWM_Parameter_SET PWM_init(); PWM_Params_init(&pwmParams); pwmParams.idleLevel = PWM_IDLE_LOW; pwmParams.periodUnits = PWM_PERIOD_HZ; pwmParams.periodValue = 1e6; pwmParams.dutyUnits = PWM_DUTY_FRACTION; pwmParams.dutyValue = PWM_DUTY_FRACTION_MAX / 2; //Log_info1("Board_PWM1:%d",Board_PWM1); pwm = PWM_open(Board_PWM1, &pwmParams); if(pwm == NULL) { Log_error0("PWM_open error!"); Task_exit(); }