summaryrefslogtreecommitdiff
path: root/irmpsystem.h
diff options
context:
space:
mode:
authorukw2014-02-20 15:25:39 +0000
committerukw2014-02-20 15:25:39 +0000
commitcb93f9e9e7b2cc102071423a590cc4a57c06657c (patch)
tree6f94767cf8f4b54f8e45cdcab4a70040e6b34b1c /irmpsystem.h
parentc9b6916a7fdde31acf9cd221dcc6b5b42f6626f7 (diff)
downloadirmp-cb93f9e9e7b2cc102071423a590cc4a57c06657c.zip
Version 2.4.0:
IRMP: added RCMM protocols, fixed decoding of SIEMENS protocol, fixed Timer routines for PIC C18 compiler IRSND: added RUWIDO protocol git-svn-id: svn://mikrocontroller.net/irmp@121 aeb2e35e-bfc4-4214-b83c-9e8de998ed28
Diffstat (limited to 'irmpsystem.h')
-rw-r--r--irmpsystem.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/irmpsystem.h b/irmpsystem.h
index 4d82286..b8a9b9a 100644
--- a/irmpsystem.h
+++ b/irmpsystem.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2009-2013 Frank Meyer - frank(at)fli4l.de
*
- * $Id: irmpsystem.h,v 1.8 2013/01/17 07:33:13 fm Exp $
+ * $Id: irmpsystem.h,v 1.10 2014/02/19 12:57:36 fm Exp $
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -41,7 +41,7 @@
#elif defined(TARGET_IS_BLIZZARD_RA2) // TI Stellaris (tested on Stellaris Launchpad with Code Composer Studio)
# define STELLARIS_ARM_CORTEX_M4
# define F_CPU (SysCtlClockGet())
-#elif defined(unix) || defined(WIN32) // Unix/Linux or Windows
+#elif defined(unix) || defined(WIN32) || defined(__APPLE__) // Unix/Linux or Windows or Apple
# define UNIX_OR_WINDOWS
#else
# define ATMEL_AVR // ATMEL AVR
@@ -54,7 +54,6 @@
# include <stdlib.h>
# define F_CPU 8000000L
# define ANALYZE
-# define DEBUG
# ifdef unix
# include <stdint.h>
# else