Tyler Weaver / Mbed 2 deprecated qp_hangman

Dependencies:   TextLCD mbed qp

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers bsp.h Source File

bsp.h

00001 #ifndef bsp_h
00002 #define bsp_h
00003 
00004 #define BSP_TICKS_PER_SEC   100     // system clock tick rate
00005 
00006 #include "TextLCD.h"
00007 
00008 TextLCD lcd(p10, p11, p17, p18, p19, p20); // rs, e, d4-d7
00009 
00010 void BSP_init(void);
00011 void BSP_lcdScrollIn(char*, char*); // display functions
00012 void BSP_lcdUpdate(char*,char*);
00013 #endif