]> oss.titaniummirror.com Git - rgblamp.git/blobdiff - btn.c
Fixes from picbtnisr work
[rgblamp.git] / btn.c
diff --git a/btn.c b/btn.c
index 7b3c75e70ff4593627c05b6179340c4affe29f44..101ec9bf6b24a22a3fbe8381aad7a2a66090fd93 100644 (file)
--- a/btn.c
+++ b/btn.c
@@ -29,22 +29,22 @@ void btn_isr()
 {
   if (IOCIF) {
     if (IOCBF0) {
-      _btn_pbdis();
+      btn_pbdis();
       tmr_start(TMR_BTN_PB, 1);
     }
     if (IOCBF4) {
-      _btn_rsdis();
+      btn_rsdis();
       tmr_start(TMR_BTN_RS, 1);
     }
     if (IOCBF5) {
-      _btn_rsdis();
+      btn_rsdis();
       tmr_start(TMR_BTN_RS, 1);
     }
   }
 
   if (tmr_fired(TMR_BTN_PB))
-    _task_post(TASK_BTN_PB);
+    task_post(TASK_BTN_PB);
   if (tmr_fired(TMR_BTN_RS))
-    _task_post(TASK_BTN_RS);
+    task_post(TASK_BTN_RS);
 }