Hangman game using qp a 16x2 LCD and joystick.

Dependencies:   TextLCD mbed qp

Revision:
0:1521c946a57b
Child:
1:4efaebc256d3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bsp.h	Wed Feb 08 22:20:11 2012 +0000
@@ -0,0 +1,13 @@
+#ifndef bsp_h
+#define bsp_h
+
+#include "TextLCD.h"
+
+#define BSP_TICKS_PER_SEC   100     // system clock tick rate
+
+TextLCD lcd(p10, p11, p17, p18, p19, p20); // rs, e, d4-d7
+
+void BSP_init(void);
+void BSP_lcdScrollIn(char*, char*); // display functions
+void BSP_lcdUpdate(char*,char*);
+#endif
\ No newline at end of file