X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fhw%2Fhw_kbd.h;h=e78a1ce0e9e1096f24ab9d717b7241a0c64404e0;hb=fb5863ca8d0db3ff2e84721f7c902b031157ebb0;hp=af163843fcb13dd2898bed89cb707dee75372196;hpb=107743ef422de7a4c926a20ff87eee1515eb1987;p=bertos.git diff --git a/bertos/hw/hw_kbd.h b/bertos/hw/hw_kbd.h index af163843..e78a1ce0 100644 --- a/bertos/hw/hw_kbd.h +++ b/bertos/hw/hw_kbd.h @@ -26,14 +26,13 @@ * invalidate any other reasons why the executable file might be covered by * the GNU General Public License. * - * Copyright 2003, 2004, 2005, 2006 Develer S.r.l. (http://www.develer.com/) - * Copyright 2000 Bernardo Innocenti + * Copyright 2003, 2004, 2005, 2006, 2008 Develer S.r.l. (http://www.develer.com/) + * Copyright 2000 Bernie Innocenti * All Rights Reserved. * --> * * \brief Keyboard hardware-specific definitions * - * \version $Id$ * * \author Francesco Sacchi * \author Stefano Fedrigo @@ -42,11 +41,11 @@ #ifndef HW_KBD_H #define HW_KBD_H -#include "kbd_map.h" +#include "hw/kbd_map.h" #include -#warning TODO:This is example implemetantion, you must implement it! +#warning TODO:This is an example implementation, you must implement it! #define K_RPT_MASK (K_UP | K_DOWN | K_OK | K_CANCEL) @@ -63,7 +62,10 @@ EXTERN_C int emul_kbdReadCols(void); */ INLINE keymask_t kbd_readkeys(void) { - return (keymask_t)emul_kbdReadCols(); + /* Implement me! */ + + //Only for test remove when implement this function + return 0; } #endif /* HW_KBD_H */