Subversion Repositories HomeAutomation

Rev

Rev 1125 | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1.  
  2. #include "<template>.h"
  3.  
  4. #ifdef <template>_USEEEPROM
  5. #include "<template>_eeprom.h"
  6. struct eeprom_<template> EEMEM eeprom_<template> =
  7. {
  8.     {
  9.         ///TODO: Define initialization values on the EEPROM variables here, this will generate a *.eep file that can be used to store this values to the node, can in future be done with a EEPROM module and the make-scrips. Write the values in the exact same order as the struct is defined in the *.h file.
  10.         0xAB,   // x
  11.         0x1234  // y
  12.     },
  13.     0   // crc, must be a correct value, but this will also be handled by the EEPROM module or make scripts
  14. };
  15. #endif
  16.  
  17. void <template>_Init(void)
  18. {
  19. #ifdef <template>_USEEEPROM
  20.     if (EEDATA_OK)
  21.     {
  22.       ///TODO: Use stored data to set initial values for the module
  23.       blablaX = eeprom_read_byte(EEDATA.x);
  24.       blablaY = eeprom_read_word(EEDATA.y);
  25.     } else
  26.     {   //The CRC of the EEPROM is not correct, store default values and update CRC
  27.       eeprom_write_byte_crc(EEDATA.x, 0xAB, WITHOUT_CRC);
  28.       eeprom_write_word_crc(EEDATA.y, 0x1234, WITHOUT_CRC);
  29.       EEDATA_UPDATE_CRC;
  30.     }
  31. #endif  
  32.     ///TODO: Initialize hardware etc here
  33.  
  34.     // to use PCINt lib, call this function: (the callback function look as a timer callback function)
  35.     // Pcint_SetCallbackPin(<template>_PCINT, EXP_C , &<template>_pcint_callback);
  36.  
  37. }
  38.  
  39. void <template>_Process(void)
  40. {
  41.     ///TODO: Stuff that needs doing is done here
  42. }
  43.  
  44. void <template>_HandleMessage(StdCan_Msg_t *rxMsg)
  45. {
  46.     if (    StdCan_Ret_class(rxMsg->Header) == CAN_MODULE_CLASS_xyz && ///TODO: Change this to the actual class type
  47.         StdCan_Ret_direction(rxMsg->Header) == DIRECTIONFLAG_FROM_OWNER &&
  48.         rxMsg->Header.ModuleType == CAN_MODULE_TYPE_xyz && ///TODO: Change this to the actual module type
  49.         rxMsg->Header.ModuleId == <template>_ID)
  50.     {
  51.         switch (rxMsg->Header.Command)
  52.         {
  53.         case CAN_CMD_MODULE_DUMMY:
  54.         ///TODO: Do something dummy
  55.         break;
  56.         }
  57.     }
  58. }
  59.  
  60. void <template>_List(uint8_t ModuleSequenceNumber)
  61. {
  62.     StdCan_Msg_t txMsg;
  63.    
  64.     StdCan_Set_class(txMsg.Header, CAN_MODULE_CLASS_xyz); ///TODO: Change this to the actual class type
  65.     StdCan_Set_direction(txMsg.Header, DIRECTIONFLAG_FROM_OWNER);
  66.     txMsg.Header.ModuleType = CAN_MODULE_TYPE_xyz; ///TODO: Change this to the actual module type
  67.     txMsg.Header.ModuleId = <template>_ID;
  68.     txMsg.Header.Command = CAN_MODULE_CMD_GLOBAL_LIST;
  69.     txMsg.Length = 6;
  70.  
  71.     txMsg.Data[0] = NODE_HW_ID_BYTE0;
  72.     txMsg.Data[1] = NODE_HW_ID_BYTE1;
  73.     txMsg.Data[2] = NODE_HW_ID_BYTE2;
  74.     txMsg.Data[3] = NODE_HW_ID_BYTE3;
  75.    
  76.     txMsg.Data[4] = NUMBER_OF_MODULES;
  77.     txMsg.Data[5] = ModuleSequenceNumber;
  78.    
  79.     while (StdCan_Put(&txMsg) != StdCan_Ret_OK);
  80. }
  81.