]> cloudbase.mooo.com Git - irmp.git/blob - irmpsystem.h
Version 2.5.5: IRMP port to PIC XC8 compiler
[irmp.git] / irmpsystem.h
1 /*---------------------------------------------------------------------------------------------------------------------------------------------------
2 * irmpsystem.h - system specific includes and defines
3 *
4 * Copyright (c) 2009-2013 Frank Meyer - frank(at)fli4l.de
5 *
6 * $Id: irmpsystem.h,v 1.11 2014/07/01 07:50:33 fm Exp $
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *---------------------------------------------------------------------------------------------------------------------------------------------------
13 */
14
15 #ifndef _IRMPSYSTEM_H_
16 #define _IRMPSYSTEM_H_
17
18 #if !defined(_IRMP_H_) && !defined(_IRSND_H_)
19 # error please include only irmp.h or irsnd.h, not irmpsystem.h
20 #endif
21
22 #if defined(__18CXX) // Microchip PIC C18 compiler
23 # define PIC_C18
24 #elif defined(__XC8) // PIC XC8 compiler
25 # include <xc.h>
26 # define PIC_C18
27 #elif defined(__PCM__) || defined(__PCB__) || defined(__PCH__) // CCS PIC compiler
28 # define PIC_CCS
29 #elif defined(STM32L1XX_MD) || defined(STM32L1XX_MDP) || defined(STM32L1XX_HD) // ARM STM32
30 # include <stm32l1xx.h>
31 # define ARM_STM32
32 # define ARM_STM32L1XX
33 #elif defined(STM32F10X_LD) || defined(STM32F10X_LD_VL) \
34 || defined(STM32F10X_MD) || defined(STM32F10X_MD_VL) \
35 || defined(STM32F10X_HD) || defined(STM32F10X_HD_VL) \
36 || defined(STM32F10X_XL) || defined(STM32F10X_CL) // ARM STM32
37 # include <stm32f10x.h>
38 # define ARM_STM32
39 # define ARM_STM32F10X
40 #elif defined(STM32F4XX) // ARM STM32
41 # include <stm32f4xx.h>
42 # define ARM_STM32
43 # define ARM_STM32F4XX
44 #elif defined(TARGET_IS_BLIZZARD_RA2) // TI Stellaris (tested on Stellaris Launchpad with Code Composer Studio)
45 # define STELLARIS_ARM_CORTEX_M4
46 # define F_CPU (SysCtlClockGet())
47 #elif defined(unix) || defined(WIN32) || defined(__APPLE__) // Unix/Linux or Windows or Apple
48 # define UNIX_OR_WINDOWS
49 #else
50 # define ATMEL_AVR // ATMEL AVR
51 #endif
52
53 #include <string.h>
54
55 #ifdef UNIX_OR_WINDOWS // Analyze on Unix/Linux or Windows
56 # include <stdio.h>
57 # include <stdlib.h>
58 # define F_CPU 8000000L
59 # define ANALYZE
60 # ifdef unix
61 # include <stdint.h>
62 # else
63 typedef unsigned char uint8_t;
64 typedef unsigned short uint16_t;
65 # endif
66 #endif
67
68
69 #if defined(ATMEL_AVR)
70 # include <stdint.h>
71 # include <stdio.h>
72 # include <avr/io.h>
73 # include <util/delay.h>
74 # include <avr/pgmspace.h>
75 # include <avr/interrupt.h>
76 # define IRSND_OC2 0 // OC2
77 # define IRSND_OC2A 1 // OC2A
78 # define IRSND_OC2B 2 // OC2B
79 # define IRSND_OC0 3 // OC0
80 # define IRSND_OC0A 4 // OC0A
81 # define IRSND_OC0B 5 // OC0B
82 #elif defined(STELLARIS_ARM_CORTEX_M4)
83 # include "inc/hw_ints.h"
84 # include "inc/hw_memmap.h"
85 # include "inc/hw_types.h"
86 # include "inc/hw_gpio.h"
87 # include "driverlib/fpu.h"
88 # include "driverlib/sysctl.h"
89 # include "driverlib/interrupt.h"
90 # include "driverlib/gpio.h"
91 # include "driverlib/rom.h"
92 # include "driverlib/systick.h"
93 # include "driverlib/pin_map.h"
94 # include "driverlib/timer.h"
95 # define PROGMEM volatile
96 # define memcpy_P memcpy
97 # define APP_SYSTICKS_PER_SEC 32
98 #else
99 # define PROGMEM
100 # define memcpy_P memcpy
101 #endif
102
103 #if defined(PIC_CCS) || defined(PIC_C18) || defined(ARM_STM32) || defined(STELLARIS_ARM_CORTEX_M4)
104 typedef unsigned char uint8_t;
105 typedef unsigned short uint16_t;
106 #endif
107
108 #if defined (PIC_C18) // PIC C18 or XC8 compiler
109 # include <p18cxxx.h> // main PIC18 h file
110 # include <timers.h> // timer lib
111 # include <pwm.h> // pwm lib
112 # define IRSND_PIC_CCP1 1 // PIC C18 RC2 = PWM1 module
113 # define IRSND_PIC_CCP2 2 // PIC C18 RC1 = PWM2 module
114 #endif
115
116 #ifndef TRUE
117 # define TRUE 1
118 # define FALSE 0
119 #endif
120
121 typedef struct
122 {
123 uint8_t protocol; // protocol, i.e. NEC_PROTOCOL
124 uint16_t address; // address
125 uint16_t command; // command
126 uint8_t flags; // flags, e.g. repetition
127 } IRMP_DATA;
128
129 #endif // _IRMPSYSTEM_H_