Ada中断处理程序

时间:2012-05-17 16:58:05

标签: ada interrupt-handling

使用Ada中断处理程序时,我到目前为止已经隔离了一些需要在代码中运行的特定内容。

使用Ada.Interrupts:

protected Int_Handler is --a protected object to handle interrupts
    procedure Handler_1; --A procedure which handles interrupts from your first device (with a body, of course)
    pragma Interrupt_Handler (Handler_1); --To tell the compiler this is an interrupt handler
    --Later in the program:
begin
    Attach_Handler (Int_Handler.Handler_1'access, Serial_1);

假设这一切都正确并且我已经在寄存器中启用了中断,那么我还需要添加其他与中断相关的代码吗?特别是,我是否需要直接与寄存器交互以某种方式“链接”我的处理程序代码,或者我可以只设置寄存器的记录表示,直接输出必要的设置,然后让rip?

谢谢!

1 个答案:

答案 0 :(得分:5)

我认为你是在正确的轨道上,但如果你以前没有这样做过,如果我是你,我会回顾一些关于Ada中断处理的文章。 E.g: