Rev 342 | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 342 | Rev 363 | ||
|---|---|---|---|
| 1 | /********************************************************************* |
1 | /********************************************************************* |
| 2 | * |
2 | * |
| 3 | * Compiler specifics like clockspeed and portIOs. |
3 | * Compiler specifics like clockspeed and portIOs. |
| 4 | * |
4 | * |
| 5 | ********************************************************************* |
5 | ********************************************************************* |
| 6 | * FileName: $HeadURL: https://svn.auml.se/svn/HomeAutomation/trunk/EmbeddedSoftware/PIC/canIR/Include/compiler.h $ |
6 | * FileName: $HeadURL: https://svn.auml.se/svn/HomeAutomation/trunk/EmbeddedSoftware/PIC/canIR/Include/compiler.h $ |
| 7 | * Last changed: $LastChangedDate: 2007- |
7 | * Last changed: $LastChangedDate: 2007-03-13 18:29:20 +0100 (Tue, 13 Mar 2007) $ |
| 8 | * By: $LastChangedBy: johboh $ |
8 | * By: $LastChangedBy: johboh $ |
| 9 | * Revision: $Revision: |
9 | * Revision: $Revision: 363 $ |
| 10 | ********************************************************************/ |
10 | ********************************************************************/ |
| 11 | 11 | ||
| 12 | #ifndef COMPILER_H |
12 | #ifndef COMPILER_H |
| 13 | #define COMPILER_H |
13 | #define COMPILER_H |
| 14 | 14 | ||
| 15 | #include <p18cxxx.h> |
15 | #include <p18cxxx.h> |
| 16 | #define CLOCK_FREQ (40000000) // Hz |
16 | #define CLOCK_FREQ (40000000) // Hz |
| 17 | #define INSTR_FREQ (CLOCK_FREQ/4) |
17 | #define INSTR_FREQ (CLOCK_FREQ/4) |
| 18 | #define CLOCK_FOSC (40) // MHz |
18 | #define CLOCK_FOSC (40) // MHz |
| 19 | 19 | ||
| 20 | #define LED0_TRIS (TRISCbits.TRISC1) |
20 | #define LED0_TRIS (TRISCbits.TRISC1) |
| 21 | #define LED0_IO (PORTCbits.RC1) |
21 | #define LED0_IO (PORTCbits.RC1) |
| 22 | 22 | ||
| 23 | #define APP_VERSION |
23 | #define APP_VERSION 0x02 |
| - | 24 | ||
| - | 25 | #define EE_INTERNAL_SIZE 1024 |
|
| - | 26 | #define EE_IR_START 0x10 |
|
| 24 | 27 | ||
| 25 | #endif //compiler.h |
28 | #endif //compiler.h |
| 26 | 29 | ||