Details | Last modification | View Log | SVN | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 129 | johboh | 1 | /********************************************************************* |
| 2 | * |
||
| 3 | * Compiler specifics like clockspeed and portIOs. |
||
| 4 | * |
||
| 5 | ********************************************************************* |
||
| 6 | * FileName: $HeadURL: https://svn.auml.se/svn/HomeAutomation/trunk/EmbeddedSoftware/PIC/canTemp/Include/compiler.h $ |
||
| 7 | * Last changed: $LastChangedDate: 2007-03-01 14:38:06 +0100 (Thu, 01 Mar 2007) $ |
||
| 8 | * By: $LastChangedBy: johboh $ |
||
| 9 | * Revision: $Revision: 347 $ |
||
| 10 | ********************************************************************/ |
||
| 11 | |||
| 12 | #ifndef COMPILER_H |
||
| 13 | #define COMPILER_H |
||
| 14 | |||
| 15 | #include <p18cxxx.h> |
||
| 16 | #define CLOCK_FREQ (40000000) // Hz |
||
| 17 | #define INSTR_FREQ (CLOCK_FREQ/4) |
||
| 18 | #define CLOCK_FOSC (40) // MHz |
||
| 19 | |||
| 20 | #define LED0_TRIS (TRISCbits.TRISC1) |
||
| 21 | #define LED0_IO (PORTCbits.RC1) |
||
| 22 | |||
| 275 | johboh | 23 | #define BLINDS0_TRIS (TRISCbits.TRISC4) |
| 24 | #define BLINDS0_IO (PORTCbits.RC4) |
||
| 25 | |||
| 297 | johboh | 26 | #define BLINDS0P_TRIS (TRISCbits.TRISC5) |
| 27 | #define BLINDS0P_IO (PORTCbits.RC5) |
||
| 129 | johboh | 28 | |
| 339 | johboh | 29 | #define TEMPERATURE_INSIDE 0x1 |
| 30 | #define TEMPERATURE_OUTSIDE 0x2 |
||
| 297 | johboh | 31 | |
| 347 | johboh | 32 | #define APP_VERSION 0x0002 |
| 342 | johboh | 33 | |
| 129 | johboh | 34 | #endif //compiler.h |