]> cloudbase.mooo.com Git - irmp.git/blame - irmpsystem.h
Version 3.0.5: added support of non-standard NEC repetition frames with pause of...
[irmp.git] / irmpsystem.h
CommitLineData
08f2dd9d 1/*---------------------------------------------------------------------------------------------------------------------------------------------------\r
2 * irmpsystem.h - system specific includes and defines\r
3 *\r
7365350c 4 * Copyright (c) 2009-2016 Frank Meyer - frank(at)fli4l.de\r
08f2dd9d 5 *\r
7365350c 6 * $Id: irmpsystem.h,v 1.24 2016/09/09 07:53:29 fm Exp $\r
08f2dd9d 7 *\r
8 * This program is free software; you can redistribute it and/or modify\r
9 * it under the terms of the GNU General Public License as published by\r
10 * the Free Software Foundation; either version 2 of the License, or\r
11 * (at your option) any later version.\r
12 *---------------------------------------------------------------------------------------------------------------------------------------------------\r
13 */\r
14\r
15#ifndef _IRMPSYSTEM_H_\r
16#define _IRMPSYSTEM_H_\r
17\r
18#if !defined(_IRMP_H_) && !defined(_IRSND_H_)\r
19# error please include only irmp.h or irsnd.h, not irmpsystem.h\r
20#endif\r
21\r
22#if defined(__18CXX) // Microchip PIC C18 compiler\r
23# define PIC_C18\r
4a7dc859 24#elif defined(__XC8) // PIC XC8 compiler\r
25# include <xc.h>\r
26# define PIC_C18\r
08f2dd9d 27#elif defined(__PCM__) || defined(__PCB__) || defined(__PCH__) // CCS PIC compiler\r
28# define PIC_CCS\r
29#elif defined(STM32L1XX_MD) || defined(STM32L1XX_MDP) || defined(STM32L1XX_HD) // ARM STM32\r
30# include <stm32l1xx.h>\r
31# define ARM_STM32\r
32# define ARM_STM32L1XX\r
c4957479 33# define F_CPU (SysCtlClockGet())\r
08f2dd9d 34#elif defined(STM32F10X_LD) || defined(STM32F10X_LD_VL) \\r
35 || defined(STM32F10X_MD) || defined(STM32F10X_MD_VL) \\r
36 || defined(STM32F10X_HD) || defined(STM32F10X_HD_VL) \\r
37 || defined(STM32F10X_XL) || defined(STM32F10X_CL) // ARM STM32\r
38# include <stm32f10x.h>\r
39# define ARM_STM32\r
40# define ARM_STM32F10X\r
622f5f59 41# define F_CPU (SysCtlClockGet())\r
08f2dd9d 42#elif defined(STM32F4XX) // ARM STM32\r
43# include <stm32f4xx.h>\r
44# define ARM_STM32\r
45# define ARM_STM32F4XX\r
aa276d72 46#elif defined(__SDCC_stm8) // STM8\r
47# define SDCC_STM8\r
061e654c 48#elif defined(TARGET_IS_BLIZZARD_RA2) // TI Stellaris (tested on Stellaris Launchpad with Code Composer Studio)\r
afd1e690 49# define STELLARIS_ARM_CORTEX_M4\r
50# define F_CPU (SysCtlClockGet())\r
95b27043 51#elif defined(__xtensa__)\r
52# include "ets_sys.h"\r
53# include "osapi.h"\r
54# include "gpio.h"\r
55# include "os_type.h"\r
56# include "c_types.h" \r
57# define uint_fast8_t uint8_t\r
58# define uint_fast16_t uint16_t\r
59#elif defined(TEENSYDUINO) && (defined(__MK20DX256__) || defined(__MK20DX128__)) // Teensy 3.x (tested on Teensy 3.1 in Arduino 1.6.5 / Teensyduino 1.2.5)\r
60# include <core_pins.h>\r
61# define TEENSY_ARM_CORTEX_M4\r
cb93f9e9 62#elif defined(unix) || defined(WIN32) || defined(__APPLE__) // Unix/Linux or Windows or Apple\r
08f2dd9d 63# define UNIX_OR_WINDOWS\r
ea29682a 64#elif defined(__MBED__) // mbed platform\r
65// #include "mbed.h" // if mbed.h is used, source must be compiled as cpp\r
66#include "gpio_api.h"\r
08f2dd9d 67#else\r
68# define ATMEL_AVR // ATMEL AVR\r
69#endif\r
70\r
71#include <string.h>\r
72\r
73#ifdef UNIX_OR_WINDOWS // Analyze on Unix/Linux or Windows\r
74# include <stdio.h>\r
75# include <stdlib.h>\r
08f2dd9d 76# define F_CPU 8000000L\r
77# define ANALYZE\r
0684a302 78# ifdef unix\r
79# include <stdint.h>\r
80# else\r
81typedef unsigned char uint8_t;\r
82typedef unsigned short uint16_t;\r
83# endif\r
08f2dd9d 84#endif\r
85\r
0684a302 86\r
08f2dd9d 87#if defined(ATMEL_AVR)\r
88# include <stdint.h>\r
89# include <stdio.h>\r
90# include <avr/io.h>\r
91# include <util/delay.h>\r
92# include <avr/pgmspace.h>\r
93# include <avr/interrupt.h>\r
94# define IRSND_OC2 0 // OC2\r
95# define IRSND_OC2A 1 // OC2A\r
96# define IRSND_OC2B 2 // OC2B\r
97# define IRSND_OC0 3 // OC0\r
98# define IRSND_OC0A 4 // OC0A\r
99# define IRSND_OC0B 5 // OC0B\r
ad4d3d41 100\r
101# define IRSND_XMEGA_OC0A 0 // OC0A\r
102# define IRSND_XMEGA_OC0B 1 // OC0B\r
103# define IRSND_XMEGA_OC0C 2 // OC0C\r
104# define IRSND_XMEGA_OC0D 3 // OC0D\r
105# define IRSND_XMEGA_OC1A 4 // OC1A\r
106# define IRSND_XMEGA_OC1B 5 // OC1B\r
107\r
afd1e690 108#elif defined(STELLARIS_ARM_CORTEX_M4)\r
ad4d3d41 109\r
afd1e690 110# include "inc/hw_ints.h"\r
111# include "inc/hw_memmap.h"\r
112# include "inc/hw_types.h"\r
113# include "inc/hw_gpio.h"\r
114# include "driverlib/fpu.h"\r
115# include "driverlib/sysctl.h"\r
116# include "driverlib/interrupt.h"\r
117# include "driverlib/gpio.h"\r
118# include "driverlib/rom.h"\r
119# include "driverlib/systick.h"\r
120# include "driverlib/pin_map.h"\r
121# include "driverlib/timer.h"\r
ad4d3d41 122# define PROGMEM\r
123# define memcpy_P memcpy\r
afd1e690 124# define APP_SYSTICKS_PER_SEC 32\r
ad4d3d41 125\r
622f5f59 126#elif defined(ARM_STM32F10X)\r
ad4d3d41 127\r
622f5f59 128# include "stm32f10x_gpio.h"\r
129# include "stm32f10x_rcc.h"\r
130# include "stm32f10x_tim.h"\r
131# include "misc.h"\r
132# define PROGMEM\r
133# define memcpy_P memcpy\r
ad4d3d41 134\r
aa276d72 135#elif defined(SDCC_STM8)\r
136\r
137# include "stm8s.h"\r
138# define PROGMEM\r
139# define memcpy_P memcpy\r
140# define __attribute__(x)\r
141# define uint_fast8_t uint8_t\r
142# define uint_fast16_t uint16_t\r
143\r
95b27043 144#elif defined(TEENSY_ARM_CORTEX_M4)\r
145# define PROGMEM\r
146# define memcpy_P memcpy\r
ad4d3d41 147\r
ea29682a 148#elif defined(__MBED__)\r
149# define PROGMEM\r
150# define memcpy_P memcpy\r
151\r
95b27043 152#else\r
08f2dd9d 153# define PROGMEM\r
154# define memcpy_P memcpy\r
ad4d3d41 155\r
08f2dd9d 156#endif\r
157\r
afd1e690 158#if defined(PIC_CCS) || defined(PIC_C18) || defined(ARM_STM32) || defined(STELLARIS_ARM_CORTEX_M4)\r
08f2dd9d 159typedef unsigned char uint8_t;\r
160typedef unsigned short uint16_t;\r
7365350c 161typedef unsigned char uint_fast8_t;\r
162typedef unsigned short uint_fast16_t;\r
08f2dd9d 163#endif\r
164\r
4a7dc859 165#if defined (PIC_C18) // PIC C18 or XC8 compiler\r
08f2dd9d 166# include <p18cxxx.h> // main PIC18 h file\r
7a844aff 167#ifndef __XC8\r
08f2dd9d 168# include <timers.h> // timer lib\r
169# include <pwm.h> // pwm lib\r
7a844aff 170#endif\r
08f2dd9d 171# define IRSND_PIC_CCP1 1 // PIC C18 RC2 = PWM1 module\r
172# define IRSND_PIC_CCP2 2 // PIC C18 RC1 = PWM2 module\r
173#endif\r
174\r
175#ifndef TRUE\r
176# define TRUE 1\r
177# define FALSE 0\r
178#endif\r
179\r
7365350c 180#if defined(PIC_C18)\r
181#define IRMP_PACKED_STRUCT\r
182#else\r
183#define IRMP_PACKED_STRUCT __attribute__ ((__packed__))\r
184#endif\r
185\r
186typedef struct IRMP_PACKED_STRUCT\r
08f2dd9d 187{\r
df24bb50 188 uint8_t protocol; // protocol, e.g. NEC_PROTOCOL\r
95b27043 189 uint16_t address; // address\r
190 uint16_t command; // command\r
191 uint8_t flags; // flags, e.g. repetition\r
08f2dd9d 192} IRMP_DATA;\r
193\r
194#endif // _IRMPSYSTEM_H_\r