From 28c1129e80054658ae221835c9af31134f027ef1 Mon Sep 17 00:00:00 2001 From: DiSlord Date: Wed, 24 Jun 2020 15:12:28 +0300 Subject: [PATCH] Remove test string --- plot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plot.c b/plot.c index 2f2d66a..a1b1112 100644 --- a/plot.c +++ b/plot.c @@ -2228,7 +2228,7 @@ static void update_waterfall(void){ // 160 - 0 127 255 // 192 - 0 0 127 // 224 - 0 0 0 - y = (uint8_t)i; // for test +// y = (uint8_t)i; // for test if (y < 32) color = RGB565( 127+((y- 0)*4), 0+((y- 0)*4), 0); else if (y < 64) color = RGB565( 255, 127+((y- 32)*4), 0+((y- 32)*4)); else if (y < 96) color = RGB565( 255, 255, 127+((y- 64)*4));