1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-18 13:55:18 +03:00

Remove debugs from dashboard.c

This commit is contained in:
jflyper 2016-11-03 12:19:14 +09:00
parent 3e8540a07f
commit 82d85181f4

View file

@ -757,9 +757,6 @@ int dashboardCmsBegin(void)
{ {
dashboardInCMS = true; dashboardInCMS = true;
debug[1]++;
delay(300);
return 0; return 0;
} }
@ -812,8 +809,6 @@ displayPortVTable_t dashboardCmsVTable = {
void dashboardCmsInit(displayPort_t *pPort) void dashboardCmsInit(displayPort_t *pPort)
{ {
debug[1]++;
delay(300);
pPort->rows = SCREEN_CHARACTER_ROW_COUNT; pPort->rows = SCREEN_CHARACTER_ROW_COUNT;
pPort->cols = SCREEN_CHARACTER_COLUMN_COUNT; pPort->cols = SCREEN_CHARACTER_COLUMN_COUNT;
pPort->vTable = &dashboardCmsVTable; pPort->vTable = &dashboardCmsVTable;