FRDM-K64 Interrupt basic example using mbed

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

FRDM-K64 Interrupt basic example using mbed

FRDM-K64 Interrupt basic example using mbed

Here you can find the code and project files for the Interrupt example, in this example 2 KBI interrupts are enabled, one assigned to SW2 and another to SW3, during the main routine the blue led is turned on, when the interrupt routines are triggered the blue led is turned off and the red or green led blink once, the interrupt was configured to detect falling edges only.

Code:

#include "mbed.h"

DigitalOut Red(LED1);

DigitalOut Blue(LED3);

InterruptIn Interrupt(SW2);

void blink()

{

    wait(.4);

    Red=1;

    Blue=0;

    wait(.4);

    Blue=1;

    wait(.4);

}

int main()

{

    Interrupt.fall(&blink);

    Blue=1;

    while (1)

    {

        Red=!Red;

        wait(.4);

    }

}

附件
无评分
版本历史
最后更新:
‎06-27-2014 10:45 AM
更新人: