FRDM-K64 Interrupt basic example using mbed

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

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);

    }

}

Attachments
No ratings
Version history
Last update:
‎06-27-2014 10:45 AM
Updated by: