summaryrefslogtreecommitdiff
path: root/irmp.h
diff options
context:
space:
mode:
authorukw2015-05-07 06:53:55 +0000
committerukw2015-05-07 06:53:55 +0000
commit22a5040e891c8139aaf40cd93ebc0533a82190a2 (patch)
treeed55c3bb8a7c9eac2ad9fd3127226c53ddc002ed /irmp.h
parent003c1008723c140e340eab96960afe47ce8f3115 (diff)
downloadirmp-22a5040e891c8139aaf40cd93ebc0533a82190a2.zip
Version 2.8.2: corrections of AVR XMEGA port
git-svn-id: svn://mikrocontroller.net/irmp@156 aeb2e35e-bfc4-4214-b83c-9e8de998ed28
Diffstat (limited to 'irmp.h')
-rw-r--r--irmp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/irmp.h b/irmp.h
index f662fe1..74a54f3 100644
--- a/irmp.h
+++ b/irmp.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2009-2015 Frank Meyer - frank(at)fli4l.de
*
- * $Id: irmp.h,v 1.93 2015/02/26 15:42:53 fm Exp $
+ * $Id: irmp.h,v 1.94 2015/05/07 06:51:10 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
@@ -25,8 +25,8 @@
# define _CONCAT(a,b) a##b
# define CONCAT(a,b) _CONCAT(a,b)
# define IRMP_PORT_PRE CONCAT(PORT, IRMP_PORT_LETTER)
-# define IRMP_DDR_PRE CONCAT(DDR, IRMP_PORT_LETTER)
-# define IRMP_PIN_PRE CONCAT(PIN, IRMP_PORT_LETTER)
+# define IRMP_DDR_PRE CONCAT(PORT, IRMP_PORT_LETTER)
+# define IRMP_PIN_PRE CONCAT(PORT, IRMP_PORT_LETTER)
# define IRMP_PORT IRMP_PORT_PRE.OUT
# define IRMP_DDR IRMP_DDR_PRE.DIR
# define IRMP_PIN IRMP_PIN_PRE.IN