Refactor to use new protocol module and sipo.
[bertos.git] / bertos / cfg / cfg_kbd.h
index 2913b23572d1be8e405e0bc99ed8be688c742dd4..92aa272dfbea8777ffd0da54ab588cede79b6d41 100644 (file)
@@ -32,7 +32,6 @@
  *
  * \brief Configuration file for keyboard module.
  *
- * \version $Id$
  *
  * \author Daniele Basile <asterix@develer.com>
  */
 #ifndef CFG_KBD_H
 #define CFG_KBD_H
 
-/// Keyboard polling method
+/// Keyboard polling method. $WIZ$ supports = "False"
 #define CONFIG_KBD_POLL  KBD_POLL_SOFTINT
 
-/// Enable keyboard event delivery to observers
+/// Enable keyboard event delivery to observers. $WIZ$ type = "boolean"
 #define CONFIG_KBD_OBSERVER  0
 
-/// Enable key beeps
-#define CONFIG_KBD_BEEP  1
+/// Enable key beeps. $WIZ$ type = "boolean"
+#define CONFIG_KBD_BEEP  0
 
-/// Enable long pression handler for keys
+/// Enable long pression handler for keys. $WIZ$ type = "boolean"
 #define CONFIG_KBD_LONGPRESS  0
 
+/// Enable calling poor man's scheduler to be called inside kbd_peek. $WIZ$ type = "boolean"
+#define CONFIG_KBD_SCHED 0
+
 #endif /* CFG_KBD_H */