Subversion Repositories HomeAutomation

Rev

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

Rev 1451 Rev 1976
Line 21... Line 21...
21
void <template>_Process(void);
21
void <template>_Process(void);
22
void <template>_HandleMessage(StdCan_Msg_t *rxMsg);
22
void <template>_HandleMessage(StdCan_Msg_t *rxMsg);
23
void <template>_List(uint8_t ModuleSequenceNumber);
23
void <template>_List(uint8_t ModuleSequenceNumber);
24
 
24
 
25
 
25
 
26
#ifdef <template>_USEEEPROM
26
#ifndef <template>_USEEEPROM
-
 
27
#define <template>_USEEEPROM 0
-
 
28
#endif
-
 
29
 
-
 
30
#if <template>_USEEEPROM==1
27
    struct <template>_Data{
31
    struct <template>_Data{
28
        ///TODO: Define EEPROM variables needed by the module
32
        ///TODO: Define EEPROM variables needed by the module
29
        uint8_t x;
33
        uint8_t x;
30
        uint16_t y;
34
        uint16_t y;
31
    }; 
35
    };