Subversion Repositories HomeAutomation

Rev

Rev 1731 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1731 Rev 1977
Line 21... Line 21...
21
void act_multiSwitch_Process(void);
21
void act_multiSwitch_Process(void);
22
void act_multiSwitch_HandleMessage(StdCan_Msg_t *rxMsg);
22
void act_multiSwitch_HandleMessage(StdCan_Msg_t *rxMsg);
23
void act_multiSwitch_List(uint8_t ModuleSequenceNumber);
23
void act_multiSwitch_List(uint8_t ModuleSequenceNumber);
24
 
24
 
25
 
25
 
26
#ifdef act_multiSwitch_USEEEPROM
26
#ifndef act_multiSwitch_USEEEPROM
-
 
27
#define act_multiSwitch_USEEEPROM 0
-
 
28
#endif
-
 
29
 
-
 
30
#if act_multiSwitch_USEEEPROM==1
27
    struct act_multiSwitch_Data{
31
    struct act_multiSwitch_Data{
28
        uint8_t activeSwitch;
32
        uint8_t activeSwitch;
29
    }; 
33
    }; 
30
#endif
34
#endif
31
 
35