Subversion Repositories HomeAutomation

Rev

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

  1. #ifndef SNS_QTOUCH
  2. #define SNS_QTOUCH
  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. #include <drivers/adc/adc.h>
  18. #include <drivers/mcu/pcint.h>
  19.  
  20. void sns_qtouch_Init(void);
  21. void sns_qtouch_Process(void);
  22. void sns_qtouch_HandleMessage(StdCan_Msg_t *rxMsg);
  23. void sns_qtouch_List(uint8_t ModuleSequenceNumber);
  24.  
  25.  
  26. #ifdef sns_qtouch_USEEEPROM
  27.     struct sns_qtouch_Data{
  28.         ///TODO: Define EEPROM variables needed by the module
  29.         uint8_t x;
  30.         uint16_t y;
  31.     }; 
  32. #endif
  33.  
  34. #endif // SNS_QTOUCH
  35.