C - 如何在Nios II中使用定时器中断

时间:2014-02-23 22:21:00

标签: c timer interrupt nios

在我的项目中,我在Quartus的Qsys设计中使用了一个简单的周期性中断。下面我需要创建一个可以从用户定义的值(以秒为单位)计数的计数器,但我不确定如何开始编写代码。我已经在线查看了Atera手册,了解如何开始,但我仍然有点困惑。以下是我到目前为止的内容

//*****************************************************************************
//*****************************************************************************
#include "nios_std_types.h"
#include "system.h"
#include <stdio.h>
#include "sys/alt_stdio.h"

//*****************************************************************************
//                  Define symbolic constants
//*****************************************************************************
// define the PIO register offsets
#define TIMER_START_OFFSET 2
#define TIMER_CNTRL_MASK //Not sure what to write yet.


//*****************************************************************************
//                            Define private data
//*****************************************************************************
uint32 *timer_ptr = (uint32 *)TIMER_0_BASE;




//*****************************************************************************
//                             private functions
//*****************************************************************************

void Timer_StartTimer();
void Timer_StopTimer();
void Timer_SetTimeLimit();

1 个答案:

答案 0 :(得分:0)

  1. 在Project BSP(电路板支持文件)中配置时间戳计时器
  2. 生成BSP(右键单击项目并生成)
  3. 按以下方式注册ISR

     retVal = alt_ic_isr_register(HIGH_RES_TIMER_IRQ_INTERRUPT_CONTROLLER_ID,
                              HIGH_RES_TIMER_IRQ,
                              handle_timer_interrupts,
                              timer_ptr, 0x0);
    
  4. 然后它应该工作,同样必须存在于其中一个文件中 http://www.altera.com/support/ip/processors/nios2/ips-nios2_support.html