Rev 942 | Details | Compare with Previous | Last modification | View Log | SVN | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 942 | arune | 1 | #ifndef ACT_RGBDRIVER |
| 2 | #define ACT_RGBDRIVER |
||
| 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/adc/adc.h> |
||
| 17 | |||
| 18 | void act_RGBdriver_Init(void); |
||
| 19 | void act_RGBdriver_Process(void); |
||
| 20 | void act_RGBdriver_HandleMessage(StdCan_Msg_t *rxMsg); |
||
| 21 | void act_RGBdriver_List(uint8_t ModuleSequenceNumber); |
||
| 22 | |||
| 23 | #endif // ACT_RGBDRIVER |