summaryrefslogtreecommitdiff
path: root/irmp.h
diff options
context:
space:
mode:
authorukw2014-09-15 10:46:02 +0000
committerukw2014-09-15 10:46:02 +0000
commit622f5f5988ba7b2cba507f65050ec09533535b12 (patch)
treeefa10e79c856a3f1109b9a026729582d22dd5a4c /irmp.h
parent7fe8188d6871371baf83a08d1ab42c094525c04b (diff)
downloadirmp-622f5f5988ba7b2cba507f65050ec09533535b12.zip
Changed irmp_protocol_names to PROGMEM types, added UART routines to main.c
git-svn-id: svn://mikrocontroller.net/irmp@144 aeb2e35e-bfc4-4214-b83c-9e8de998ed28
Diffstat (limited to 'irmp.h')
-rw-r--r--irmp.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/irmp.h b/irmp.h
index 8b61f25..cda737c 100644
--- a/irmp.h
+++ b/irmp.h
@@ -3,9 +3,7 @@
*
* Copyright (c) 2009-2014 Frank Meyer - frank(at)fli4l.de
*
- * $Id: irmp.h,v 1.88 2014/07/21 08:58:58 fm Exp $
- *
- * ATMEGA88 @ 8 MHz
+ * $Id: irmp.h,v 1.89 2014/09/15 10:27:38 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
@@ -178,7 +176,7 @@ extern uint8_t irmp_is_busy (void);
extern uint8_t irmp_ISR (void);
#if IRMP_PROTOCOL_NAMES == 1
-extern const char * irmp_protocol_names[IRMP_N_PROTOCOLS + 1];
+extern const char * const irmp_protocol_names[IRMP_N_PROTOCOLS + 1] PROGMEM;
#endif
#if IRMP_USE_CALLBACK == 1