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
更新者: