Define cpu core macro for makefile.
[bertos.git] / bertos / hw / kbd_map.h
index 564a3452b1a9247d0f9008feda1acfcc92b7d5f4..15e4f083d929eeabc564991d6e05b46721880594 100644 (file)
@@ -33,7 +33,6 @@
  *
  * \brief Keyboard map definitions.
  *
- * \version $Id$
  *
  * \author Francesco Sacchi <batt@develer.com>
  * \author Stefano Fedrigo <a@develer.com>
@@ -61,9 +60,11 @@ typedef uint16_t keymask_t;
 #define K_OK       BV(2)
 #define K_CANCEL   BV(3)
 
-#define K_REPEAT   BV(14) /**< This is a repeated keyevent. */
-#define K_TIMEOUT  BV(15) /**< Fake key event for timeouts. */
+#define K_REPEAT   BV(13) /**< This is a repeated keyevent. */
+#define K_TIMEOUT  BV(14) /**< Fake key event for timeouts. */
+#define K_LONG     BV(15)
 /*@}*/
 
+#define K_LNG_MASK 0
 
 #endif /* HW_KBD_MAP_H */