Demo Application for the Celeritous Breakout Board

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers defines.h Source File

defines.h

00001 //Celeritous Technical Services, Corp.  2012
00002 //Mattehw R. Gattis
00003 
00004 #define NAV_UP        0x01
00005 #define NAV_DOWN    0x02
00006 #define NAV_LEFT    0x04
00007 #define NAV_RIGHT    0x08
00008 #define NAV_PRESS    0x10
00009 
00010 BusIn NAVIn(p22,
00011     p24,
00012     p23,
00013     p25,
00014     p26);
00015 
00016 InterruptIn NAV_UP_int(p22),
00017     NAV_DOWN_int(p24),
00018     NAV_LEFT_int(p23),
00019     NAV_RIGHT_int(p25),
00020     NAV_PRESS_int(p26);