1113283_en-US

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

1113283_en-US

1113283_en-US

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

    }

}

Freedom Development PlatformKinetis K Series MCUs
Tags (1)
No ratings
Version history
Last update:
‎11-19-2025 10:29 AM
Updated by: