]> cloudbase.mooo.com Git - irmp.git/blob - irmpsystem.h
Version 2.9.5: added TECHNICS protocol
[irmp.git] / irmpsystem.h
1 /*---------------------------------------------------------------------------------------------------------------------------------------------------
2 * irmpsystem.h - system specific includes and defines
3 *
4 * Copyright (c) 2009-2015 Frank Meyer - frank(at)fli4l.de
5 *
6 * $Id: irmpsystem.h,v 1.18 2015/05/18 10:51:07 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 # define F_CPU (SysCtlClockGet())
34 #elif defined(STM32F10X_LD) || defined(STM32F10X_LD_VL) \
35 || defined(STM32F10X_MD) || defined(STM32F10X_MD_VL) \
36 || defined(STM32F10X_HD) || defined(STM32F10X_HD_VL) \
37 || defined(STM32F10X_XL) || defined(STM32F10X_CL) // ARM STM32
38 # include <stm32f10x.h>
39 # define ARM_STM32
40 # define ARM_STM32F10X
41 # define F_CPU (SysCtlClockGet())
42 #elif defined(STM32F4XX) // ARM STM32
43 # include <stm32f4xx.h>
44 # define ARM_STM32
45 # define ARM_STM32F4XX
46 #elif defined(TARGET_IS_BLIZZARD_RA2) // TI Stellaris (tested on Stellaris Launchpad with Code Composer Studio)
47 # define STELLARIS_ARM_CORTEX_M4
48 # define F_CPU (SysCtlClockGet())
49 #elif defined(unix) || defined(WIN32) || defined(__APPLE__) // Unix/Linux or Windows or Apple
50 # define UNIX_OR_WINDOWS
51 #else
52 # define ATMEL_AVR // ATMEL AVR
53 #endif
54
55 #include <string.h>
56
57 #ifdef UNIX_OR_WINDOWS // Analyze on Unix/Linux or Windows
58 # include <stdio.h>
59 # include <stdlib.h>
60 # define F_CPU 8000000L
61 # define ANALYZE
62 # ifdef unix
63 # include <stdint.h>
64 # else
65 typedef unsigned char uint8_t;
66 typedef unsigned short uint16_t;
67 # endif
68 #endif
69
70
71 #if defined(ATMEL_AVR)
72 # include <stdint.h>
73 # include <stdio.h>
74 # include <avr/io.h>
75 # include <util/delay.h>
76 # include <avr/pgmspace.h>
77 # include <avr/interrupt.h>
78 # define IRSND_OC2 0 // OC2
79 # define IRSND_OC2A 1 // OC2A
80 # define IRSND_OC2B 2 // OC2B
81 # define IRSND_OC0 3 // OC0
82 # define IRSND_OC0A 4 // OC0A
83 # define IRSND_OC0B 5 // OC0B
84
85 # define IRSND_XMEGA_OC0A 0 // OC0A
86 # define IRSND_XMEGA_OC0B 1 // OC0B
87 # define IRSND_XMEGA_OC0C 2 // OC0C
88 # define IRSND_XMEGA_OC0D 3 // OC0D
89 # define IRSND_XMEGA_OC1A 4 // OC1A
90 # define IRSND_XMEGA_OC1B 5 // OC1B
91
92 #elif defined(STELLARIS_ARM_CORTEX_M4)
93
94 # include "inc/hw_ints.h"
95 # include "inc/hw_memmap.h"
96 # include "inc/hw_types.h"
97 # include "inc/hw_gpio.h"
98 # include "driverlib/fpu.h"
99 # include "driverlib/sysctl.h"
100 # include "driverlib/interrupt.h"
101 # include "driverlib/gpio.h"
102 # include "driverlib/rom.h"
103 # include "driverlib/systick.h"
104 # include "driverlib/pin_map.h"
105 # include "driverlib/timer.h"
106 # define PROGMEM
107 # define memcpy_P memcpy
108 # define APP_SYSTICKS_PER_SEC 32
109
110 #elif defined(ARM_STM32F10X)
111
112 # include "stm32f10x_gpio.h"
113 # include "stm32f10x_rcc.h"
114 # include "stm32f10x_tim.h"
115 # include "misc.h"
116 # define PROGMEM
117 # define memcpy_P memcpy
118
119 #else
120
121 # define PROGMEM
122 # define memcpy_P memcpy
123
124 #endif
125
126 #if defined(PIC_CCS) || defined(PIC_C18) || defined(ARM_STM32) || defined(STELLARIS_ARM_CORTEX_M4)
127 typedef unsigned char uint8_t;
128 typedef unsigned short uint16_t;
129 #endif
130
131 #if defined (PIC_C18) // PIC C18 or XC8 compiler
132 # include <p18cxxx.h> // main PIC18 h file
133 #ifndef __XC8
134 # include <timers.h> // timer lib
135 # include <pwm.h> // pwm lib
136 #endif
137 # define IRSND_PIC_CCP1 1 // PIC C18 RC2 = PWM1 module
138 # define IRSND_PIC_CCP2 2 // PIC C18 RC1 = PWM2 module
139 #endif
140
141 #ifndef TRUE
142 # define TRUE 1
143 # define FALSE 0
144 #endif
145
146 typedef struct __attribute__ ((__packed__))
147 {
148 uint8_t protocol; // protocol, e.g. NEC_PROTOCOL
149 uint16_t address; // address
150 uint16_t command; // command
151 uint8_t flags; // flags, e.g. repetition
152 } IRMP_DATA;
153
154 #endif // _IRMPSYSTEM_H_