]> cloudbase.mooo.com Git - irmp.git/blame - irmpsystem.h
Version 2.4.0:
[irmp.git] / irmpsystem.h
CommitLineData
08f2dd9d 1/*---------------------------------------------------------------------------------------------------------------------------------------------------\r
2 * irmpsystem.h - system specific includes and defines\r
3 *\r
2ac088b2 4 * Copyright (c) 2009-2013 Frank Meyer - frank(at)fli4l.de\r
08f2dd9d 5 *\r
cb93f9e9 6 * $Id: irmpsystem.h,v 1.10 2014/02/19 12:57:36 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
24#elif defined(__PCM__) || defined(__PCB__) || defined(__PCH__) // CCS PIC compiler\r
25# define PIC_CCS\r
26#elif defined(STM32L1XX_MD) || defined(STM32L1XX_MDP) || defined(STM32L1XX_HD) // ARM STM32\r
27# include <stm32l1xx.h>\r
28# define ARM_STM32\r
29# define ARM_STM32L1XX\r
30#elif defined(STM32F10X_LD) || defined(STM32F10X_LD_VL) \\r
31 || defined(STM32F10X_MD) || defined(STM32F10X_MD_VL) \\r
32 || defined(STM32F10X_HD) || defined(STM32F10X_HD_VL) \\r
33 || defined(STM32F10X_XL) || defined(STM32F10X_CL) // ARM STM32\r
34# include <stm32f10x.h>\r
35# define ARM_STM32\r
36# define ARM_STM32F10X\r
37#elif defined(STM32F4XX) // ARM STM32\r
38# include <stm32f4xx.h>\r
39# define ARM_STM32\r
40# define ARM_STM32F4XX\r
afd1e690 41#elif defined(TARGET_IS_BLIZZARD_RA2) // TI Stellaris (tested on Stellaris Launchpad with Code Composer Studio)\r
42# define STELLARIS_ARM_CORTEX_M4\r
43# define F_CPU (SysCtlClockGet())\r
cb93f9e9 44#elif defined(unix) || defined(WIN32) || defined(__APPLE__) // Unix/Linux or Windows or Apple\r
08f2dd9d 45# define UNIX_OR_WINDOWS\r
46#else\r
47# define ATMEL_AVR // ATMEL AVR\r
48#endif\r
49\r
50#include <string.h>\r
51\r
52#ifdef UNIX_OR_WINDOWS // Analyze on Unix/Linux or Windows\r
53# include <stdio.h>\r
54# include <stdlib.h>\r
08f2dd9d 55# define F_CPU 8000000L\r
56# define ANALYZE\r
0684a302 57# ifdef unix\r
58# include <stdint.h>\r
59# else\r
60typedef unsigned char uint8_t;\r
61typedef unsigned short uint16_t;\r
62# endif\r
08f2dd9d 63#endif\r
64\r
0684a302 65\r
08f2dd9d 66#if defined(ATMEL_AVR)\r
67# include <stdint.h>\r
68# include <stdio.h>\r
69# include <avr/io.h>\r
70# include <util/delay.h>\r
71# include <avr/pgmspace.h>\r
72# include <avr/interrupt.h>\r
73# define IRSND_OC2 0 // OC2\r
74# define IRSND_OC2A 1 // OC2A\r
75# define IRSND_OC2B 2 // OC2B\r
76# define IRSND_OC0 3 // OC0\r
77# define IRSND_OC0A 4 // OC0A\r
78# define IRSND_OC0B 5 // OC0B\r
afd1e690 79#elif defined(STELLARIS_ARM_CORTEX_M4)\r
80# include "inc/hw_ints.h"\r
81# include "inc/hw_memmap.h"\r
82# include "inc/hw_types.h"\r
83# include "inc/hw_gpio.h"\r
84# include "driverlib/fpu.h"\r
85# include "driverlib/sysctl.h"\r
86# include "driverlib/interrupt.h"\r
87# include "driverlib/gpio.h"\r
88# include "driverlib/rom.h"\r
89# include "driverlib/systick.h"\r
90# include "driverlib/pin_map.h"\r
91# include "driverlib/timer.h"\r
92# define PROGMEM volatile\r
93# define memcpy_P memcpy\r
94# define APP_SYSTICKS_PER_SEC 32\r
08f2dd9d 95#else\r
96# define PROGMEM\r
97# define memcpy_P memcpy\r
98#endif\r
99\r
afd1e690 100#if defined(PIC_CCS) || defined(PIC_C18) || defined(ARM_STM32) || defined(STELLARIS_ARM_CORTEX_M4)\r
08f2dd9d 101typedef unsigned char uint8_t;\r
102typedef unsigned short uint16_t;\r
103#endif\r
104\r
105#if defined (PIC_C18)\r
106# include <p18cxxx.h> // main PIC18 h file\r
107# include <timers.h> // timer lib\r
108# include <pwm.h> // pwm lib\r
109# define IRSND_PIC_CCP1 1 // PIC C18 RC2 = PWM1 module\r
110# define IRSND_PIC_CCP2 2 // PIC C18 RC1 = PWM2 module\r
111#endif\r
112\r
113#ifndef TRUE\r
114# define TRUE 1\r
115# define FALSE 0\r
116#endif\r
117\r
118typedef struct\r
119{\r
120 uint8_t protocol; // protocol, i.e. NEC_PROTOCOL\r
121 uint16_t address; // address\r
122 uint16_t command; // command\r
123 uint8_t flags; // flags, e.g. repetition\r
124} IRMP_DATA;\r
125\r
126#endif // _IRMPSYSTEM_H_\r