Subversion Repositories HomeAutomation

Rev

Blame | Last modification | View Log | SVN | RSS feed

  1. #ifndef CHN_EG2401_CONTROLLER
  2. #define CHN_EG2401_CONTROLLER
  3.  
  4. /*-----------------------------------------------------------------------------
  5.  * Includes
  6.  *---------------------------------------------------------------------------*/
  7. /* system files */
  8. #include <avr/io.h>
  9. #include <avr/interrupt.h>
  10. #include <stdio.h>
  11. /* lib files */
  12. #include <config.h>
  13. #include <bios.h>
  14. #include <drivers/can/stdcan.h>
  15. #include <drivers/timer/timer.h>
  16. #include <drivers/mcu/gpio.h>
  17.  
  18. //to use PCINT lib. uncomment the line below
  19. #include <drivers/mcu/pcint.h>
  20.  
  21. void chn_lcd_control_Init(void);
  22. void chn_lcd_control_Process(void);
  23. void chn_lcd_control_HandleMessage(StdCan_Msg_t *rxMsg);
  24. void chn_lcd_control_List(uint8_t ModuleSequenceNumber);
  25.  
  26. #endif // CHN_EG2401_CONTROLLER
  27.