graphlcd: disable some console spam

Origin commit data
------------------
Branch: ni/coolstream
Commit: ecae9b733f
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-06-17 (Thu, 17 Jun 2021)

Origin message was:
------------------
- graphlcd: disable some console spam

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2021-06-17 23:01:08 +02:00
parent fb8407d007
commit 90666de440
4 changed files with 7 additions and 7 deletions

View File

@@ -104,10 +104,10 @@ void InitAnalogClock(void)
}
}
found:
printf("[%s:%s] found file: %s\n", __file__, __func__, tmp_file.c_str());
//printf("[%s:%s] found file: %s\n", __file__, __func__, tmp_file.c_str());
file[i] += std::string(tmp_file);
}
printf("[%s:%s] finish initialization\n", __file__, __func__);
//printf("[%s:%s] finish initialization\n", __file__, __func__);
}
void RenderClock(int x, int y)

View File

@@ -121,10 +121,10 @@ void InitDigitalClock(void)
}
}
found:
printf("[%s:%s] found file: %s\n", __file__, __func__, digit_file.c_str());
//printf("[%s:%s] found file: %s\n", __file__, __func__, digit_file.c_str());
digit[i] += std::string(digit_file);
}
printf("[%s:%s] finish initialization\n", __file__, __func__);
//printf("[%s:%s] finish initialization\n", __file__, __func__);
}
void RenderTimeDigit(int _digit, int x, int y)

View File

@@ -33,7 +33,7 @@ GLCD::cFont font_time_standby;
void InitSimpleClock(void)
{
printf("[%s:%s] finish initialization\n", __file__, __func__);
//printf("[%s:%s] finish initialization\n", __file__, __func__);
}
void SimpleClockUpdateFonts(int mode)

View File

@@ -133,10 +133,10 @@ void InitWeather(void)
}
}
found:
printf("[%s:%s] found file: %s\n", __file__, __func__, weather_file.c_str());
//printf("[%s:%s] found file: %s\n", __file__, __func__, weather_file.c_str());
weather[i] += std::string(weather_file);
}
printf("[%s:%s] finish initialization\n", __file__, __func__);
//printf("[%s:%s] finish initialization\n", __file__, __func__);
}
void WeatherUpdateFonts(void)