This commit is contained in:
olikraus 2017-09-05 16:54:21 +02:00
parent 1b6c3e8792
commit 51b933e502
1 changed files with 8 additions and 0 deletions

View File

@ -96,6 +96,7 @@ void draw_lut_wave(u8g2_t *u8g2, uint8_t w, uint8_t cx, u8g2_uint_t y)
void draw_all_lut(u8g2_t *u8g2, uint8_t cx, uint8_t cy)
{
uint8_t i;
uint16_t total;
u8g2_uint_t x, y;
u8g2_uint_t xs = 1;
y = LUT_DY +1;
@ -109,6 +110,10 @@ void draw_all_lut(u8g2_t *u8g2, uint8_t cx, uint8_t cy)
y += (LUT_DY+2)*2;
}
total = 0;
for( i = 0; i < LUT_ARRAY_LEN; i++ )
total += lut_time[i];
y+=1;
if ( cy == LUT_WAVE_CNT )
{
@ -123,6 +128,9 @@ void draw_all_lut(u8g2_t *u8g2, uint8_t cx, uint8_t cy)
x += u8g2_DrawStr(u8g2, x, y, "]=");
x += u8g2_DrawStr(u8g2, x, y, u8x8_u8toa( lut_time[cx], 2));
x += u8g2_DrawStr(u8g2, x, y, " ");
x += u8g2_DrawStr(u8g2, x, y, " total=");
x += u8g2_DrawStr(u8g2, x, y, u8x8_u16toa( total, 3));
x += u8g2_DrawStr(u8g2, x, y, " ");
y+=8;
if ( cy == LUT_WAVE_CNT+1 )