lets remove clang-tidy again

This commit is contained in:
Peter Buchegger 2020-05-29 21:13:33 +02:00
parent 1383c93a43
commit 70d3ef3135
2 changed files with 3 additions and 1 deletions

View file

@ -4,7 +4,7 @@ framework = arduino
board = ttgo-t-beam
lib_ldf_mode = deep+
monitor_speed = 115200
check_tool = cppcheck, clangtidy
check_tool = cppcheck
check_flags =
cppcheck: --suppress=*:*.pio\*

View file

@ -25,6 +25,7 @@ void setup_lora();
int next_update = -1;
// cppcheck-suppress unusedFunction
void setup()
{
Serial.begin(115200);
@ -43,6 +44,7 @@ void setup()
delay(500);
}
// cppcheck-suppress unusedFunction
void loop()
{
static int update_min = -1;