Skip to content

Commit

Permalink
#27 Fixed all warnings, warnings caused by implicit convert between s…
Browse files Browse the repository at this point in the history
…trings to char*
  • Loading branch information
nimrod46 committed Apr 13, 2020
1 parent 8905b7b commit dbafc1a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ void calc_failure()
prev_index= index;
}

void display_text_2_lines (char *message1, char *message2)
void display_text_2_lines (char const *message1, char const *message2)
{
if (millis()-lastUSRblink> 100)
{
Expand All @@ -602,7 +602,7 @@ void display_text_2_lines (char *message1, char *message2)
}
}

void display_text_calib (char *message)
void display_text_calib (char const *message)
{
lcd.clear();
lcd.setCursor(0, 0); lcd.print(message);
Expand Down

0 comments on commit dbafc1a

Please sign in to comment.