Remove showPrases from startup

No longer show phrases (was used during testing).

Signed-off-by: Collin J. Doering <collin.doering@rekahsoft.ca>
This commit is contained in:
Collin J. Doering 2015-10-07 22:38:11 -04:00
parent 172d5e268f
commit 3a6800a2b0
1 changed files with 0 additions and 16 deletions

View File

@ -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);