TI中文支持网
TI专业的中文技术问题搜集分享网站

CC2640R2F: 协处理器不能工作

Part Number:CC2640R2F

嗨,我使用CC2640R2F 5.3.0SDK在CCS IDE上已经调试好了simple_peripheral程序。在Sensor Controller Studio 上测试好了 协处理器采集 ADC的程序,可是合并到一起就不能正常工作了。请问问题会出在哪里呢?

加入的方法如下:

void scCtrlReadyCallback(void) {

} // scCtrlReadyCallback
void scTaskAlertCallback(void) {

    // Clear the ALERT interrupt source
    //scifClearAlertIntSource();

    adc_value = scifTaskData.adcWindowMonitor.output.adcValue;

    // Acknowledge the alert event
    scifAckAlertEvents();
} // taskAlertCallback
void ScADCInit(void)

{
    // Initialize the Sensor Controller
    scifOsalInit();
    scifOsalRegisterCtrlReadyCallback(scCtrlReadyCallback);
    scifOsalRegisterTaskAlertCallback(scTaskAlertCallback);
    scifInit(&scifDriverSetup);
    scifStartRtcTicksNow(0x00010000);
}
void ScADCStart(void)
{
    scifStartTasksNbl(BV(SCIF_ADC_WINDOW_MONITOR_TASK_ID));
}
然后在   SimplePeripheral_init  里面调用
  ScADCInit();
  ScADCStart();
请帮忙看一下,谢谢。
Kevin Qiu1:

对照下面的步骤检查一下,我之前测试过合并没有问题:

https://dev.ti.com/tirex/content/simplelink_academy_cc2640r2sdk_5_30_01_00/modules/sensor_controller/sc_01_project_from_scratch/sc_01_project_from_scratch.html

赞(0)
未经允许不得转载:TI中文支持网 » CC2640R2F: 协处理器不能工作
分享到: 更多 (0)