Go to the source code of this file.
Functions | |
void | erbusy_init () |
void | erbusy_off (void) |
void | erbusy_blink (void) |
void | erbusy_on (void) |
void | erbusy_shutdown (void) |
Copyright (C) 2006 iRex Technologies
Definition in file erbusy.h.
void erbusy_blink | ( | void | ) |
Definition at line 53 of file erbusy.c.
00054 { 00055 erbusy_request(ccBusyState_Blink); 00056 }
void erbusy_init | ( | ) |
Open communication channel with erbusy deamon counts on the fact that erbusy is running
Definition at line 34 of file erbusy.c.
00035 { 00036 //CL_IPCPRINTF("entry"); 00037 erIpcStartClient(ER_BUSYD_CHANNEL, &erbusyChannel); 00038 }
void erbusy_off | ( | void | ) |
request from contentlister
Definition at line 48 of file erbusy.c.
00049 { 00050 erbusy_request(ccBusyState_Off); 00051 }
void erbusy_on | ( | void | ) |
Definition at line 58 of file erbusy.c.
00059 { 00060 erbusy_request(ccBusyState_On); 00061 }
void erbusy_shutdown | ( | void | ) |
Definition at line 63 of file erbusy.c.
00064 { 00065 erbusy_request(ccBusyState_Shutdown); 00066 }