Mercurial > public > ostc4
diff Discovery/Src/tHome.c @ 99:6a2308b9a3d4 kittz
Config for debug data
author | Dmitry Romanov <kitt@bk.ru> |
---|---|
date | Mon, 26 Nov 2018 15:25:52 +0300 |
parents | e6abbef57475 |
children | 22a1094545f3 |
line wrap: on
line diff
--- a/Discovery/Src/tHome.c Mon Nov 26 13:58:51 2018 +0300 +++ b/Discovery/Src/tHome.c Mon Nov 26 15:25:52 2018 +0300 @@ -436,27 +436,27 @@ uint8_t tHome_show_lost_connection_count(GFX_DrawCfgScreen *ScreenToWriteOn) { -// return 0; - -// if(!DataEX_lost_connection_count()) return 0; + if(!SPI_MIN_ERROR_SHOW) return 0; + if(DataEX_lost_connection_count()>=SPI_MIN_ERROR_SHOW){ - char text[10]; -// if(get_DataEX_Error_place()) last_place=get_DataEX_Error_place(); + char text[64]; -// if(get_DataEX_Error_Handler()) last_err=get_DataEX_Error_Handler(); SDataExchangeSlaveToMaster* dataIn=get_dataInPointer(); - snprintf(text,10,"spi:\002%i",DataEX_lost_connection_count()); - Gfx_write_label_var(ScreenToWriteOn, 600,800, 0,&FontT24,CLUT_ButtonSymbols,text); + snprintf(text,32,"spi err:\002 %i/%i",DataEX_lost_connection_count(),get_num_SPI_CALLBACKS()); + Gfx_write_label_var(ScreenToWriteOn, 100,300, 0,&FontT24,CLUT_ButtonSymbols,text); - snprintf(text,10,"\002%X%X%X%X",dataIn->header.checkCode[0],dataIn->header.checkCode[1],dataIn->header.checkCode[2],dataIn->header.checkCode[3]); - Gfx_write_label_var(ScreenToWriteOn, 600,800, 30,&FontT24,CLUT_ButtonSymbols,text); + snprintf(text,32,"header:\002%X%X%X%X",dataIn->header.checkCode[0],dataIn->header.checkCode[1],dataIn->header.checkCode[2],dataIn->header.checkCode[3]); + Gfx_write_label_var(ScreenToWriteOn, 350,550, 0,&FontT24,CLUT_ButtonSymbols,text); - snprintf(text,10,"\002%X%X%X%X",dataIn->footer.checkCode[0],dataIn->footer.checkCode[1],dataIn->footer.checkCode[2],dataIn->footer.checkCode[3]); - Gfx_write_label_var(ScreenToWriteOn, 600,800, 60,&FontT24,CLUT_ButtonSymbols,text); + snprintf(text,32,"footer:\002%X%X%X%X",dataIn->footer.checkCode[0],dataIn->footer.checkCode[1],dataIn->footer.checkCode[2],dataIn->footer.checkCode[3]); + Gfx_write_label_var(ScreenToWriteOn, 600,800, 0,&FontT24,CLUT_ButtonSymbols,text); + } - snprintf(text,10,"cpt:\002%i",get_num_SPI_CALLBACKS()); - Gfx_write_label_var(ScreenToWriteOn, 600,800, 90,&FontT24,CLUT_ButtonSymbols,text); + + +// snprintf(text,32,"cpt:\002%i",get_num_SPI_CALLBACKS()); +// Gfx_write_label_var(ScreenToWriteOn, 600,800, 90,&FontT24,CLUT_ButtonSymbols,text); // snprintf(text,10,"i2c:\002%i",get_DataEX_Error_place()); // Gfx_write_label_var(ScreenToWriteOn, 600,800, 90,&FontT24,CLUT_ButtonSymbols,text);