Megha Govind Magajikondi / Mbed 2 deprecated mbed_interrupt

Dependencies:   mbed

Committer:
megha1118
Date:
Thu Dec 01 08:24:31 2016 +0000
Revision:
0:cecb923bd4c3
megha

Who changed what in which revision?

UserRevisionLine numberNew contents of line
megha1118 0:cecb923bd4c3 1 #ifndef MBED_BUZZ_H
megha1118 0:cecb923bd4c3 2 #define MBED_BUZZ_H
megha1118 0:cecb923bd4c3 3
megha1118 0:cecb923bd4c3 4 #include "mbed.h"
megha1118 0:cecb923bd4c3 5
megha1118 0:cecb923bd4c3 6 class interrupt {
megha1118 0:cecb923bd4c3 7 public:
megha1118 0:cecb923bd4c3 8 Flasher(PinName pin);
megha1118 0:cecb923bd4c3 9 void flash(int n);
megha1118 0:cecb923bd4c3 10
megha1118 0:cecb923bd4c3 11 private:
megha1118 0:cecb923bd4c3 12 DigitalOut _pin;
megha1118 0:cecb923bd4c3 13 };
megha1118 0:cecb923bd4c3 14
megha1118 0:cecb923bd4c3 15 #endif