]> oss.titaniummirror.com Git - rgblamp.git/blobdiff - isr.c
Fixes from picbtnisr work
[rgblamp.git] / isr.c
diff --git a/isr.c b/isr.c
index 78291457794134af01f760a09286284a1f79af4f..a1b9a491d3602259a8dc9396fcff7b793be95c10 100644 (file)
--- a/isr.c
+++ b/isr.c
@@ -10,8 +10,8 @@
 #include "btn.h"
 #include "task.h"
 
-bit isr_gie; /* Used to store the state of GIE for nested ndi()/nei() */
-unsigned char isr_di; /* Count of nested ndi() */
+bit _isr_gie; /* Used to store the state of GIE for nested ndi()/nei() */
+unsigned char _isr_di; /* Count of nested ndi() */
 
 void interrupt isr()
 {
@@ -19,13 +19,13 @@ void interrupt isr()
   btn_isr();
 
   if (tmr_fired(TMR_AUTO_OFFON))
-    _task_post(TASK_AUTO_OFFON);
+    task_post(TASK_AUTO_OFFON);
   if (tmr_fired(TMR_FADE))
-    _task_post(TASK_FADE);
+    task_post(TASK_FADE);
   if (tmr_fired(TMR_INCOLOR))
-    _task_post(TASK_INCOLOR);
+    task_post(TASK_INCOLOR);
 #if 0
   if (tmr_fired(TMR_DIM))
-    _task_post(TMR_DIM);
+    task_post(TMR_DIM);
 #endif
 }