Hangman game using qp a 16x2 LCD and joystick.

Dependencies:   TextLCD mbed qp

bsp.h

Committer:
tylerjw
Date:
2012-02-09
Revision:
1:4efaebc256d3
Parent:
0:1521c946a57b

File content as of revision 1:4efaebc256d3:

#ifndef bsp_h
#define bsp_h

#define BSP_TICKS_PER_SEC   100     // system clock tick rate

#include "TextLCD.h"

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