RTOS homework 4

Dependencies:   C12832_lcd mbed

Revision:
1:5f41e2df0e85
Parent:
0:1013288b8e43
Child:
2:1a3acbc4d799
--- a/main.cpp	Sun Aug 18 14:45:13 2013 +0000
+++ b/main.cpp	Sun Aug 18 15:13:19 2013 +0000
@@ -1,7 +1,7 @@
 /*----------------------------------------------//------------------------------
     student   : m-moore
     class     : rtos
-    directory : RTOS_HW_03 part 1
+    directory : RTOS_HW_04
     file      : main.cpp
 ----description---------------------------------//------------------------------
     Joystick-Controlled Metronome
@@ -69,6 +69,11 @@
     void interrupt_service_UD();                // joystick up/down sample.                
     void led3_off();                            // attachable LED control.
     void led3_on();                             // attachable LED control.
+    void ISR_up();
+    void ISR_down();
+    void ISR_right();
+    void ISR_left();
+    void ISR_center();
 //==============================================//==============================
     int main(void) 
     {
@@ -97,6 +102,26 @@
       lUpDownHowMany = 0;
     }
 /*----------------------------------------------//----------------------------*/
+    void ISR_up(void)
+    {
+    }
+/*----------------------------------------------//----------------------------*/
+    void ISR_down(void)
+    {
+    }
+/*----------------------------------------------//----------------------------*/
+    void ISR_left(void)
+    {
+    }
+/*----------------------------------------------//----------------------------*/
+    void ISR_right(void)
+    {
+    }
+/*----------------------------------------------//----------------------------*/
+    void ISR_center(void)
+    {
+    }
+/*----------------------------------------------//----------------------------*/
     void lcd_display(void)                      // display metronome info.
     {
       lcd.cls();                                // clear display.