From 3a6800a2b092d9b32ad282a4465c4159325c963a Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Wed, 7 Oct 2015 22:38:11 -0400 Subject: [PATCH] Remove showPrases from startup No longer show phrases (was used during testing). Signed-off-by: Collin J. Doering --- lcdOutput.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/lcdOutput.c b/lcdOutput.c index cbcbf6a..fc27d20 100644 --- a/lcdOutput.c +++ b/lcdOutput.c @@ -33,20 +33,6 @@ #include "lcdLib.h" #include "USART.h" -void showSomePrases(void) { - const char* data[4] = { "Hello there friend!!\nIsn't it a nice day.\nAnyways, I must go..\nTo a midnight show;)", - "This is some other text. It should be wrapped appropriately.\nIsn't that neat!", - "Welcome! (line 1)\nThis is line 2.\nAnd here is line 3.\nAnd finally, line 4.", - "Finally, this is the\nend; of the array,\nthat is.\nCheers."}; - - for (uint8_t i = 0; i < 4; i++) { - writeStringToLCD(data[i]); - _delay_ms(5000); - clearDisplay(); - } - _delay_ms(3000); -} - int main(void) { clock_prescale_set(clock_div_1); @@ -58,8 +44,6 @@ int main(void) { initLCD(); //initLCDByInternalReset(); - showSomePrases(); - while (1) { serialChar = receiveByte(); writeCharToLCD(serialChar);