X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=isr.c;h=a1b9a491d3602259a8dc9396fcff7b793be95c10;hb=be367d7f046a080f1575ac4e918a94dfad24fa73;hp=78291457794134af01f760a09286284a1f79af4f;hpb=8584c7dd3bf9ad3362f285f065d66c8524340ef4;p=rgblamp.git diff --git a/isr.c b/isr.c index 7829145..a1b9a49 100644 --- 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 }