KL25 lptmr在MQX-LITE工程中无法收到中断

2020-02-20 20:56发布


大家好!我在非mqx-lite的工程中,可以正常使用lptmr的功能,正常接收到中断。当我试图把lptmr的功能加入到mqx-lite中,lptmr的中断无法正常接收。我基于freescaleKL25 Sample Codekl25_sc_rev10klxx-sc-pexprojectsMQX_Lite_i2c_demoarm 的工程进行修改。 附件是测试的keil工程文件。

增加了lptmr.c 和lptmr.h, 并在init_task中:

Lptmr_Init(5000, 1);       
Lptmr_Start();
  Configure(); /* TSS init */
#if CONSOLE_IO_SUPPORT
  printf("Project description: ");
  printf("I2C example of communication with external accelerometer. ");
  printf("PWM is used for dimming the RGB LED in dependence on tilt of the board. ");
  printf(" ");
#endif
  I2C_DeviceData = I2C_Init(&DataState);
#if CONSOLE_IO_SUPPORT
  printf("Description: ");
  printf("1) Initialization of MMA8451Q accelerometer... ");
#endif
        for(;;)
        {
                 _time_delay_ticks(10);
                printf("test loop ");
        }

测试结果是:
到5秒钟的时候,while循环停止打印,同时void lptmr_isr(LDD_RTOS_TISRParameter _isrParameter) 中的print语句也没有出来。 请大家帮忙看看!

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。