首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

请教一个关于FreeCntr16 bean的问题

请教一个关于FreeCntr16 bean的问题

我设置的时间周期是1ms,Timer是MTIMmod;Method是Enable,Disable,Reset,GetTimeUS,GetTimeMS。


void main(void)
{
  /*** Processor Expert internal initialization. DON'T REMOVE THIS CODE!!! ***/
  PE_low_level_init();
  /*** End of Processor Expert internal initialization.                    ***/


  /* Write your code here */


  unsigned int i, time;
  int one_loop_us;
 
  FC161_Reset();  


 for( i=0; i<600; ++i ); 
  
  
  if( FC161_GetTimeUS( &time )==ERR_OK ) /*老是停在这这里面出不来,究竟什么原因,怎么解决*/


{
  
     one_loop_us = time ;
 


}
  /*** Processor Expert end of main routine. DON'T MODIFY THIS CODE!!! ***/
  for(;;){}
  /*** Processor Expert end of main routine. DON'T WRITE CODE BELOW!!! ***/
} /*** End of main routine. DO NOT MODIFY THIS TEXT!!! ***/


 


 

没有正常得到值,可能程序有些问题,看看编译的时候有什么warning
返回列表