优化这段代码 if( DBData[i] >= RT1064KZZ_GL1_ALM && DBData[i] <= RT1064KZZ_KZHL && DBData[i] != RT1064KZZ_MODE && DBData[i] != RT1064KZZ_UAB_CH && DBData[i] != RT1064KZZ_UBC_CH && DBData[i] != RT1064KZZ_FBS && DBData[i] != RT1064KZZ_FBS_MODE) { (isDraw ? LCD_DisString_Not((i%LISTOFFSET)+1, 20,(char *)gcszOnOff[(int)val]) : LCD_DisString((i%LISTOFFSET)+1, 20,(char *)gcszOnOff[(int)val]) ); } else if(DBData[i] == RT1064KZZ_MODE) { (isDraw ? LCD_DisString_Not((i%LISTOFFSET)+1, 20,(char *)ModeName[(int)val]) : LCD_DisString((i%LISTOFFSET)+1, 20,(char *)ModeName[(int)val]) ); } else if (DBData[i] == RT1064KZZ_FBS || DBData[i] == RT1064KZZ_FBS_MODE ) { (isDraw ? LCD_DisString_Not((i%LISTOFFSET)+1, 20,(char *)FBS_NAME[(int)val]) : LCD_DisString((i%LISTOFFSET)+1, 20,(char *)FBS_NAME[(int)val]) ); } else if(DBData[i] == RT1064KZZ_UAB_CH || DBData[i] == RT1064KZZ_UBC_CH || DBData[i] == RT1064_DZ_CHZCS) { sprintf(szVal, "%0.f" , val); LCD_DisString((i%LISTOFFSET)+1, 19 , szVal); if(DBData[i] == RT1064_DZ_CHZCS) LCD_DisString((i%LISTOFFSET)+1, 24, (char *)"次"); if (isDraw == 1) len = LCD_BitNot(UNIT_PROTECT,UNIT_GAP_RT1064,gapid,DBData[i],i,bit); } else { sprintf(szVal, "%0.3f" , get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])); LCD_DisString((i%LISTOFFSET)+1, 19, szVal); if (DBData[i] >= RT1064_YS_GL1 && DBData[i] <= RT1064_YS_FBS_JY) LCD_DisString((i%9)+1, 25, (char *)"S"); else if ((DBData[i] >= RT1064_DZ_GL1 && DBData[i] <= RT1064_DZ_I02) || ((DBData[i] >= RT1064_DZ_PHASE_I && DBData[i] <= RT1064_DZ_I0DLT) && DBData[i] != RT1064_DZ_YL_HAR && DBData[i] != RT1064_DZ_LMJ) || DBData[i] == RT1064_DZ_SD || DBData[i] == RT1064_DZ_I0HJS || DBData[i] == RT1064_DZ_FC_CHZ || (DBData[i] >= RT1064_DZ_I03 && DBData[i] <= RT1064_DZ_FBS_I0)|| DBData[i] == RT1064_DZ_FBS_OL) { LCD_DisString((i%LISTOFFSET)+1, 25, (char *)"A"); } else if (DBData[i] == RT1064_DZ_LMJ || DBData[i] == RT1064_DZ_JC || DBData[i] == RT1064_DZ_GYJC) { LCD_DisString((i%LISTOFFSET)+1, 25, (char *)"°"); } else if (DBData[i] == RT1064_DZ_YL_HAR) LCD_DisString((i%LISTOFFSET)+1, 25, (char *)"%"); else if (DBData[i] == RT1064_DZ_IDS ||DBData[i] == RT1064_DZ_OPENCS || (DBData[i] >= RT1064_DZ_I03 && DBData[i] <= RT1064_DZ_FBS_I0)) { LCD_DisString((i%LISTOFFSET)+1, 24, (char *)"次"); } else if (DBData[i] == RT1064_DZ_DP || DBData[i] == RT1064_DZ_GP) { LCD_DisString((i%LISTOFFSET)+1, 25, (char *)"HZ"); } else LCD_DisString((i%LISTOFFSET)+1, 25, (char *)"V"); if (isDraw == 1)len = LCD_BitNot(UNIT_PROTECT,UNIT_GAP_RT1064,gapid,DBData[i],i,bit); }

时间: 2024-03-01 12:52:09 浏览: 53
这段代码可以优化的地方比较多,建议按照以下几个方面进行调整: 1. 将重复的代码片段提取出来,封装成函数,提高代码复用性和可读性; 2. 尽可能地使用 switch-case 语句替换 if-else 语句,提高代码执行效率; 3. 对于需要频繁操作的字符串拼接操作,可以使用 sprintf 函数来代替,提高代码执行效率。 下面是一个可能的优化版本: ```c void draw_LCD(int i, int isDraw, float val, int gapid, int bit) { char szVal[10]; switch (DBData[i]) { case RT1064KZZ_MODE: if (isDraw) { LCD_DisString_Not((i % LISTOFFSET) + 1, 20, (char *)ModeName[(int)val]); } else { LCD_DisString((i % LISTOFFSET) + 1, 20, (char *)ModeName[(int)val]); } break; case RT1064KZZ_FBS: case RT1064KZZ_FBS_MODE: if (isDraw) { LCD_DisString_Not((i % LISTOFFSET) + 1, 20, (char *)FBS_NAME[(int)val]); } else { LCD_DisString((i % LISTOFFSET) + 1, 20, (char *)FBS_NAME[(int)val]); } break; case RT1064KZZ_UAB_CH: case RT1064KZZ_UBC_CH: case RT1064_DZ_CHZCS: sprintf(szVal, "%0.f", val); LCD_DisString((i % LISTOFFSET) + 1, 19, szVal); if (DBData[i] == RT1064_DZ_CHZCS) { LCD_DisString((i % LISTOFFSET) + 1, 24, (char *)"次"); } if (isDraw) { LCD_BitNot(UNIT_PROTECT, UNIT_GAP_RT1064, gapid, DBData[i], i, bit); } break; default: sprintf(szVal, "%0.3f", get_ActionDZInfo_val(UNIT_GAP_RT1064, gapid, DBData[i])); LCD_DisString((i % LISTOFFSET) + 1, 19, szVal); if (DBData[i] >= RT1064_YS_GL1 && DBData[i] <= RT1064_YS_FBS_JY) { LCD_DisString((i % 9) + 1, 25, (char *)"S"); } else if ((DBData[i] >= RT1064_DZ_GL1 && DBData[i] <= RT1064_DZ_I02) || ((DBData[i] >= RT1064_DZ_PHASE_I && DBData[i] <= RT1064_DZ_I0DLT) && DBData[i] != RT1064_DZ_YL_HAR && DBData[i] != RT1064_DZ_LMJ) || DBData[i] == RT1064_DZ_SD || DBData[i] == RT1064_DZ_I0HJS || DBData[i] == RT1064_DZ_FC_CHZ || (DBData[i] >= RT1064_DZ_I03 && DBData[i] <= RT1064_DZ_FBS_I0) || DBData[i] == RT1064_DZ_FBS_OL) { LCD_DisString((i % LISTOFFSET) + 1, 25, (char *)"A"); } else if (DBData[i] == RT1064_DZ_LMJ || DBData[i] == RT1064_DZ_JC || DBData[i] == RT1064_DZ_GYJC) { LCD_DisString((i % LISTOFFSET) + 1, 25, (char *)"°"); } else if (DBData[i] == RT1064_DZ_YL_HAR) { LCD_DisString((i % LISTOFFSET) + 1, 25, (char *)"%"); } else if (DBData[i] == RT1064_DZ_IDS || DBData[i] == RT1064_DZ_OPENCS || (DBData[i] >= RT1064_DZ_I03 && DBData[i] <= RT1064_DZ_FBS_I0)) { LCD_DisString((i % LISTOFFSET) + 1, 24, (char *)"次"); } else if (DBData[i] == RT1064_DZ_DP || DBData[i] == RT1064_DZ_GP) { LCD_DisString((i % LISTOFFSET) + 1, 25, (char *)"HZ"); } else { LCD_DisString((i % LISTOFFSET) + 1, 25, (char *)"V"); } if (isDraw) { LCD_BitNot(UNIT_PROTECT, UNIT_GAP_RT1064, gapid, DBData[i], i, bit); } break; } } ``` 调用方式如下: ```c for (int i = 0; i < DBData.size(); i++) { if (DBData[i] >= RT1064KZZ_GL1_ALM && DBData[i] <= RT1064KZZ_KZHL && DBData[i] != RT1064KZZ_MODE && DBData[i] != RT1064KZZ_UAB_CH && DBData[i] != RT1064KZZ_UBC_CH && DBData[i] != RT1064KZZ_FBS && DBData[i] != RT1064KZZ_FBS_MODE) { draw_LCD(i, isDraw, val, gapid, bit); } else { draw_LCD(i, isDraw, val, gapid, bit); } } ```
阅读全文

相关推荐

帮我优化这段代码 val = get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i]); if( DBData[i] >= RT1064KZZ_GL1_ALM && DBData[i] <= RT1064KZZ_KZHL && DBData[i] != RT1064KZZ_MODE && DBData[i] != RT1064KZZ_UAB_CH && DBData[i] != RT1064KZZ_UBC_CH && DBData[i] != RT1064KZZ_FBS && DBData[i] != RT1064KZZ_FBS_MODE) { displayString(isDraw,gcszOnOff[(int)val],(i%LISTOFFSET)+1,20); } else if(DBData[i] == RT1064KZZ_MODE) { displayString(isDraw,ModeName[(int)val],(i%LISTOFFSET)+1,20); } else if (DBData[i] == RT1064KZZ_FBS || DBData[i] == RT1064KZZ_FBS_MODE ) { displayString(isDraw,(DBData[i] == RT1064KZZ_FBS ?FBS_NAME[(int)val] :FBS_MODE_NAME[(int)val]),(i%LISTOFFSET)+1,20); } else if(DBData[i] == RT1064KZZ_UAB_CH || DBData[i] == RT1064KZZ_UBC_CH || DBData[i] == RT1064_DZ_CHZCS) { sprintf(szVal, "%0.f" , val); LCD_DisString((i%LISTOFFSET)+1, 19 , szVal); if(DBData[i] == RT1064_DZ_CHZCS) LCD_DisString((i%LISTOFFSET)+1, 24, (char *)"次"); if (isDraw == 1) len = LCD_BitNot(UNIT_PROTECT,UNIT_GAP_RT1064,gapid,DBData[i],i,bit); } else { sprintf(szVal, "%0.3f" , get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])); LCD_DisString((i%LISTOFFSET)+1, 19, szVal); if (DBData[i] >= RT1064_YS_GL1 && DBData[i] <= RT1064_YS_FBS_JY) LCD_DisString((i%9)+1, 25, (char *)"S"); else if ((DBData[i] >= RT1064_DZ_GL1 && DBData[i] <= RT1064_DZ_I02) || ((DBData[i] >= RT1064_DZ_PHASE_I && DBData[i] <= RT1064_DZ_I0DLT) && DBData[i] != RT1064_DZ_YL_HAR && DBData[i] != RT1064_DZ_LMJ) || DBData[i] == RT1064_DZ_SD || DBData[i] == RT1064_DZ_I0HJS || DBData[i] == RT1064_DZ_FC_CHZ || (DBData[i] >= RT1064_DZ_I03 && DBData[i] <= RT1064_DZ_FBS_I0)|| DBData[i] == RT1064_DZ_FBS_OL) { LCD_DisString((i%LISTOFFSET)+1, 25, (char *)"A"); } else if (DBData[i] == RT1064_DZ_LMJ || DBData[i] == RT1064_DZ_JC || DBData[i] == RT1064_DZ_GYJC) { LCD_DisString((i%LISTOFFSET)+1, 25, (char *)"°"); } else if (DBData[i] == RT1064_DZ_YL_HAR) LCD_DisString((i%LISTOFFSET)+1, 25, (char *)"%"); else if (DBData[i] == RT1064_DZ_IDS ||DBData[i] == RT1064_DZ_OPENCS || (DBData[i] >= RT1064_DZ_I03 && DBData[i] <= RT1064_DZ_FBS_I0)) { LCD_DisString((i%LISTOFFSET)+1, 24, (char *)"次"); } else if (DBData[i] == RT1064_DZ_DP || DBData[i] == RT1064_DZ_GP) { LCD_DisString((i%LISTOFFSET)+1, 25, (char *)"HZ"); } else LCD_DisString((i%LISTOFFSET)+1, 25, (char *)"V"); if (isDraw == 1)len = LCD_BitNot(UNIT_PROTECT,UNIT_GAP_RT1064,gapid,DBData[i],i,bit); }

优化这段代码 if( DBData[i] >= RT1064KZZ_GL1_ALM && DBData[i] <= RT1064KZZ_KZHL && DBData[i] != RT1064KZZ_MODE && DBData[i] != RT1064KZZ_UAB_CH && DBData[i] != RT1064KZZ_UBC_CH && DBData[i] != RT1064KZZ_FBS && DBData[i] != RT1064KZZ_FBS_MODE) { (isDraw ? LCD_DisString_Not((i%LISTOFFSET)+1, 20,(char *)gcszOnOff[(int)val]) : LCD_DisString((i%LISTOFFSET)+1, 20,(char *)gcszOnOff[(int)val]) ); } else if(DBData[i] == RT1064KZZ_MODE) { (isDraw ? LCD_DisString_Not((i%LISTOFFSET)+1, 20,(char *)ModeName[(int)val]) : LCD_DisString((i%LISTOFFSET)+1, 20,(char *)ModeName[(int)val]) ); } else if (DBData[i] == RT1064KZZ_FBS || DBData[i] == RT1064KZZ_FBS_MODE ) { (isDraw ? LCD_DisString_Not((i%LISTOFFSET)+1, 20,(char *)FBS_NAME[(int)val]) : LCD_DisString((i%LISTOFFSET)+1, 20,(char *)FBS_NAME[(int)val]) ); } else if(DBData[i] == RT1064KZZ_UAB_CH || DBData[i] == RT1064KZZ_UBC_CH || DBData[i] == RT1064_DZ_CHZCS) { sprintf(szVal, "%0.f" , val); LCD_DisString((i%LISTOFFSET)+1, 19 , szVal); if(DBData[i] == RT1064_DZ_CHZCS) LCD_DisString((i%LISTOFFSET)+1, 24, (char *)"次"); if (isDraw == 1) len = LCD_BitNot(UNIT_PROTECT,UNIT_GAP_RT1064,gapid,DBData[i],i,bit); } else { sprintf(szVal, "%0.3f" , get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])); LCD_DisString((i%LISTOFFSET)+1, 19, szVal); if (DBData[i] >= RT1064_YS_GL1 && DBData[i] <= RT1064_YS_FBS_JY) LCD_DisString((i%9)+1, 25, (char *)"S"); else if ((DBData[i] >= RT1064_DZ_GL1 && DBData[i] <= RT1064_DZ_I02) || ((DBData[i] >= RT1064_DZ_PHASE_I && DBData[i] <= RT1064_DZ_I0DLT) && DBData[i] != RT1064_DZ_YL_HAR && DBData[i] != RT1064_DZ_LMJ) || DBData[i] == RT1064_DZ_SD || DBData[i] == RT1064_DZ_I0HJS || DBData[i] == RT1064_DZ_FC_CHZ || (DBData[i] >= RT1064_DZ_I03 && DBData[i] <= RT1064_DZ_FBS_I0)|| DBData[i] == RT1064_DZ_FBS_OL) { LCD_DisString((i%LISTOFFSET)+1, 25, (char *)"A"); } else if (DBData[i] == RT1064_DZ_LMJ || DBData[i] == RT1064_DZ_JC || DBData[i] == RT1064_DZ_GYJC) { LCD_DisString((i%LISTOFFSET)+1, 25, (char *)"°"); } else if (DBData[i] == RT1064_DZ_YL_HAR) LCD_DisString((i%LISTOFFSET)+1, 25, (char *)"%"); else if (DBData[i] == RT1064_DZ_IDS ||DBData[i] == RT1064_DZ_OPENCS || (DBData[i] >= RT1064_DZ_I03 && DBData[i] <= RT1064_DZ_FBS_I0)) { LCD_DisString((i%LISTOFFSET)+1, 24, (char *)"次"); } else if (DBData[i] == RT1064_DZ_DP || DBData[i] == RT1064_DZ_GP) { LCD_DisString((i%LISTOFFSET)+1, 25, (char *)"HZ"); } else LCD_DisString((i%LISTOFFSET)+1, 25, (char *)"V"); if (isDraw == 1)len = LCD_BitNot(UNIT_PROTECT,UNIT_GAP_RT1064,gapid,DBData[i],i,bit); }

优化这段代码 if(i > num - 1) break; isDraw = (not == 2 && (draw == i+1)); if (DBData[i] != RT1064_YS_YYDD && DBData[i] != RT1064KZZ_FC_CHZ ) LCD_DisString((i%LISTOFFSET)+1, 0, gRunPara.gap_ActionDZInfo[gapid][DBData[i]].szName); if (DBData[i] == RT1064KZZ_FC_CHZ) LCD_DisString((i%LISTOFFSET)+1, 0, (char *)"大电流闭锁重合闸"); if (DBData[i] == RT1064_YS_YYDD) LCD_DisString((i%LISTOFFSET)+1, 0, (char *)"重合闸检有压时间"); val = get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i]); if( DBData[i] >= RT1064KZZ_GL1_ALM && DBData[i] <= RT1064KZZ_KZHL && DBData[i] != RT1064KZZ_MODE && DBData[i] != RT1064KZZ_UAB_CH && DBData[i] != RT1064KZZ_UBC_CH && DBData[i] != RT1064KZZ_FBS && DBData[i] != RT1064KZZ_FBS_MODE) { (isDraw ? LCD_DisString_Not((i%LISTOFFSET)+1, 20,(char *)gcszOnOff[(int)val]) : LCD_DisString((i%LISTOFFSET)+1, 20,(char *)gcszOnOff[(int)val]) ); } else if(DBData[i] == RT1064KZZ_MODE) { (isDraw ? LCD_DisString_Not((i%LISTOFFSET)+1, 20,(char *)ModeName[(int)val]) : LCD_DisString((i%LISTOFFSET)+1, 20,(char *)ModeName[(int)val]) ); } else if (DBData[i] == RT1064KZZ_FBS || DBData[i] == RT1064KZZ_FBS_MODE ) { (isDraw ? LCD_DisString_Not((i%LISTOFFSET)+1, 20,(char *)FBS_NAME[(int)val]) : LCD_DisString((i%LISTOFFSET)+1, 20,(char *)FBS_NAME[(int)val]) ); } else if(DBData[i] == RT1064KZZ_UAB_CH || DBData[i] == RT1064KZZ_UBC_CH || DBData[i] == RT1064_DZ_CHZCS) { sprintf(szVal, "%0.f" , val); LCD_DisString((i%LISTOFFSET)+1, 19 , szVal); if(DBData[i] == RT1064_DZ_CHZCS) LCD_DisString((i%LISTOFFSET)+1, 24, (char *)"次"); if (isDraw == 1) len = LCD_BitNot(UNIT_PROTECT,UNIT_GAP_RT1064,gapid,DBData[i],i,bit); }

优化这段代码 if( DBData[i] >= RT1064KZZ_GL1_ALM && DBData[i] <= RT1064KZZ_KZHL && DBData[i] != RT1064KZZ_MODE && DBData[i] != RT1064KZZ_UAB_CH && DBData[i] != RT1064KZZ_UBC_CH && DBData[i] != RT1064KZZ_FBS && DBData[i] != RT1064KZZ_FBS_MODE) { LCD_DisString((i%9)+1, 20, (char *)gcszOnOff[(int)get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])]); if (not == 2) { if(draw == (i+1)) { LCD_DisString_Not((i%9)+1, 20, (char *)gcszOnOff[(int)get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])]); } } } else if(DBData[i] == RT1064KZZ_MODE) { LCD_DisString((i%9)+1, 20, (char *)ModeName[(int)get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])]); if (not == 2) { if(draw == (i+1)) { LCD_DisString_Not((i%9)+1, 20, (char *)ModeName[(int)get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])]); } } } else if (DBData[i] == RT1064KZZ_FBS || DBData[i] == RT1064KZZ_FBS_MODE ) { if (DBData[i] == RT1064KZZ_FBS) { LCD_DisString((i%9)+1, 20, (char *)FBS_NAME[(int)get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])]); if (not == 2) { if(draw == (i+1)) { LCD_DisString_Not((i%9)+1, 20, (char *)FBS_NAME[(int)get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])]); } } } else if(DBData[i] == RT1064KZZ_FBS_MODE ) { LCD_DisString((i%9)+1, 20, (char *)FBS_MODE_NAME[(int)get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])]); if (not == 2) { if(draw == (i+1)) { LCD_DisString_Not((i%9)+1, 20, (char *)FBS_MODE_NAME[(int)get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])]); } } } } else if(DBData[i] == RT1064KZZ_UAB_CH || DBData[i] == RT1064KZZ_UBC_CH || DBData[i] == RT1064_DZ_CHZCS) { sprintf(szVal, "%0.f" , get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])); LCD_DisString((i%9)+1, 19 , szVal); if(DBData[i] == RT1064_DZ_CHZCS) LCD_DisString((i%9)+1, 24, (char *)"次"); if (not == 2) { if(draw == (i+1)) { len = LCD_BitNot(UNIT_PROTECT,UNIT_GAP_RT1064,gapid,DBData[i],i,bit); } } }

优化这段代码 if( DBData[i] >= RT1064KZZ_GL1_ALM && DBData[i] <= RT1064KZZ_KZHL && DBData[i] != RT1064KZZ_MODE && DBData[i] != RT1064KZZ_UAB_CH && DBData[i] != RT1064KZZ_UBC_CH && DBData[i] != RT1064KZZ_FBS && DBData[i] != RT1064KZZ_FBS_MODE) { LCD_DisString((i%9)+1, 20, (char *)gcszOnOff[(int)get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])]); if (not == 2) { if(draw == (i+1)) { LCD_DisString_Not((i%9)+1, 20, (char *)gcszOnOff[(int)get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])]); } } } else if(DBData[i] == RT1064KZZ_MODE) { LCD_DisString((i%9)+1, 20, (char *)ModeName[(int)get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])]); if (not == 2) { if(draw == (i+1)) { LCD_DisString_Not((i%9)+1, 20, (char *)ModeName[(int)get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])]); } } } else if (DBData[i] == RT1064KZZ_FBS || DBData[i] == RT1064KZZ_FBS_MODE ) { if (DBData[i] == RT1064KZZ_FBS) { LCD_DisString((i%9)+1, 20, (char *)FBS_NAME[(int)get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])]); if (not == 2) { if(draw == (i+1)) { LCD_DisString_Not((i%9)+1, 20, (char *)FBS_NAME[(int)get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])]); } } } else if(DBData[i] == RT1064KZZ_FBS_MODE ) { LCD_DisString((i%9)+1, 20, (char *)FBS_MODE_NAME[(int)get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])]); if (not == 2) { if(draw == (i+1)) { LCD_DisString_Not((i%9)+1, 20, (char *)FBS_MODE_NAME[(int)get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])]); } } } } else if(DBData[i] == RT1064KZZ_UAB_CH || DBData[i] == RT1064KZZ_UBC_CH || DBData[i] == RT1064_DZ_CHZCS) { sprintf(szVal, "%0.f" , get_ActionDZInfo_val(UNIT_GAP_RT1064,gapid,DBData[i])); LCD_DisString((i%9)+1, 19 , szVal); if(DBData[i] == RT1064_DZ_CHZCS) LCD_DisString((i%9)+1, 24, (char *)"次"); if (not == 2) { if(draw == (i+1)) { len = LCD_BitNot(UNIT_PROTECT,UNIT_GAP_RT1064,gapid,DBData[i],i,bit); } } }

sprintf(szVal, "%0.3f" , val); LCD_DisString((i%9)+1, 19, szVal); Pro_szUnit(DBData[i],i); if (isDraw == 1) val = LCD_BitModify(val,draw); ikey = Lcd_Recvfun2(); switch(ikey) { case LCD_KEY_UP: bit = 0; if (not == 2) { if (draw > page + 1 && draw <= line) draw = draw - 1; } break; case LCD_KEY_DOWN: bit = 0; if (not == 2) { if(draw < i) if (draw < line) draw = draw + 1; } break; case LCD_KEY_ADD: break; case LCD_KEY_DECREASE: break; case LCD_KEY_Left: if (not == 1) { change = 0; if(page < 9) continue; if(page >= 9) { page = page - 9; line = line - 9; } } break; case LCD_KEY_RIGHT: if (not == 1) { change = 0; if(line >= num) continue; if(page < num) { page = page + 9; line = line + 9; } } break; case LCD_KEY_ENTER: not = 2; bit = 0; break; case LCD_KEY_CANCEL: change = 0; if(not > 0) --not; draw = 0; if (not == 0) return; break; default: break; } } 这段代码中的LCD_BitModify函数也会运行ikey = Lcd_Recvfun2(); switch(ikey) { case LCD_KEY_UP: bit = 0; if (not == 2) { if (draw > page + 1 && draw <= line) draw = draw - 1; } break; case LCD_KEY_DOWN: bit = 0; if (not == 2) { if(draw < i) if (draw < line) draw = draw + 1; } break; case LCD_KEY_ADD: break; case LCD_KEY_DECREASE: break; case LCD_KEY_Left: if (not == 1) { change = 0; if(page < 9) continue; if(page >= 9) { page = page - 9; line = line - 9; } } break; case LCD_KEY_RIGHT: if (not == 1) { change = 0; if(line >= num) continue; if(page < num) { page = page + 9; line = line + 9; } } break; case LCD_KEY_ENTER: not = 2; bit = 0; break; case LCD_KEY_CANCEL: change = 0; if(not > 0) --not; draw = 0; if (not == 0) return; break; default:break; }怎么使它们互不干扰

在mysql数据里有一张表,建表语句如下: CREATE TABLE audit_bin_info ( BIN_PID int(8) NOT NULL, HOST_NAME varchar(100) DEFAULT NULL , SOCK_ID int(8) DEFAULT NULL , BIN_STS tinyint(2) DEFAULT NULL , BOOT_NAME varchar(100) DEFAULT NULL, CHANNEL_ID tinyint(2) DEFAULT NULL , START_DATE datetime DEFAULT NULL , UPDATE_DATE datetime DEFAULT NULL, MODULE_NAME varchar(100) DEFAULT NULL, BUSI_CONTENT varchar(4000) DEFAULT NULL, TASK_STS smallint(4) DEFAULT NULL , ID bigint(15) NOT NULL AUTO_INCREMENT, PRIMARY KEY (ID) USING BTREE, KEY IDX_BIN_INFO (BOOT_NAME,MODULE_NAME,CHANNEL_ID) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=16766000 DEFAULT CHARSET=utf8 帮我写一个c++的函数,函数定义如下: void CMonitorBase::binlogToDb( const AISTD string & strBinName, const AISTD string & strBinType, const CClientList & listClient, const AISTD string &m_strChannelId, otl_connect& ocDbConn) 它需求实现以下功能: 1、使用otl_stream查询audit_bin_info表,查询语句为select id, bin_pid, host_name, sock_id from audit_bin_info where boot_name='"+strBinName+"' and module_name='"+strBinType+"' and channel_id = " + m_strChannelId;将查到数据保存在一个vector结构中; 2、将查到的表数据跟listClient中的数据做比较,比较条件为表数据中的bin_pid, host_name, sock_id分别和CClient结构中的m_iAppId,m_strHostName,m_iSockId,都相等,则认为找到数据。 3、如果在listClient中找到相等的数据,则根据找到的数据update表中的数据,需要更新的字段为BIN_STS, START_DATE, BUSI_CONTENT,TASK_STS,UPDATE_DATE,前4个字段对别对应CClient结构中的m_nClientSts,dtmBoot,m_strBusiContent,m_nTaskSts,UPDATE_DATE取系统时间; 如果在listClient中没找到相等的数据,则根据id值删除audit_bin_info表中的数据; 最后如果是listClient中多出来的数据,需要插入到audit_bin_info表中; 其中CClient和CClientList的定义如下: class CClient { public: long m_idx; int32 m_iSockId; int32 m_iAppId; int64 m_llTaskId; int16 m_nTaskSts; int16 m_nClientSts; int16 m_nMaxTask; int16 m_nChannelId; AISTD string m_strBusiContent; AISTD string m_strHostName; INT64LIST m_listDetail; AISTD string m_strSpecSts; CBSDateTime dtmBoot; AISTD string m_strRetMsg; int16 m_nStatus; int16 m_nDispEsc; CClient() : m_idx(0), m_iSockId(0), m_iAppId(0), m_llTaskId(0), m_nTaskSts(0), m_nClientSts(1), m_nMaxTask(1), m_nChannelId(0), m_strSpecSts("0"), m_nStatus(0), m_nDispEsc(0) { dtmBoot = CBSDateTime::currentDateTime(); }; }; typedef AISTD vector<CClient*> CClientList;

最新推荐

recommend-type

Linux shell实现每天定时备份mysql数据库

mysqldump -uroot -p123456 --all-databases &gt; /data/dbdata/mysqlbak/`date +%Y%m%d`.sql # 删除超过7天的备份,但保留每月10号、20号、30号的备份 find /data/dbdata/mysqlbak/ -mtime +7 -name '*[1-9].sql' -...
recommend-type

Red_Hat_Enterprise_Linux_5(X64)_Oracle10g安装手册

这份手册是结合了多个安装指南和实践经验的总结,包含了详细的安装过程截图以及一些Linux常用命令的汇总,非常适合初学者参考。 首先,安装前的关键步骤是创建Oracle用户、组以及安装目录。通过以下命令创建必要的...
recommend-type

计算机视觉开发:OpenCV入门教程及应用

内容概要:本文档详细介绍了OpenCV的基本概念及其在计算机视觉领域的应用,重点讲解了OpenCV在C++和Python环境下的安装方法,并提供了图像读取、显示、基本操作、视频处理以及面部检测的具体代码示例。此外,还涉及了一些图像处理技术的快速演示和进一步学习的路径建议。 适合人群:对计算机视觉感兴趣的新手开发者和技术爱好者。 使用场景及目标:本教程适用于希望入门计算机视觉和图像处理的新手,通过实际操作练习提升技术水平,掌握OpenCV的基本用法,并能够应用于实际项目,如OCR应用、图像分割与目标检测等。 阅读建议:建议读者按照文档提供的步骤进行实践,逐步完成每个代码示例,结合官方文档和其他资源深入理解各个函数的作用。对于初学者来说,可以通过多动手尝试,加深对OpenCV的理解。
recommend-type

围绕着一系列的经典Python练习题 .zip

围绕着一系列的经典Python练习题。Python练习一些按照回顾排列的Python练习题。欢迎提交你的答案或添加更多有趣的题目!从开始学Python以来,接触了精彩的练习题。下面十个练习题,是我做的和练习出来的题里比较有趣的,现在按照难度由低到高排列。欢迎到GitHub上提交你的答案。猜测数字经典的猜数字游戏,几乎是学编程时都会做的。功能描述随机选择三个以内的数字作为答案。用户输入一个数字,程序会提示大了或者小了,直到用户猜中。2.FizzBu​​zz另一道经典编程题。功能描述遍历并打印0到100,如果数字能被3整除,显示Fizz如果数字能被5整除,显示Buzz如果能同时被3和5整除,就显示FizzBu​​zz。结果应该类似0,1 ,2,嘶嘶声,4,嗡嗡声,6……14,嘶嘶声,16……3. 猜测数字的AI和猜数字一样,不过这次是设计一个能猜数字的人工智能功能描述用户输入一个单位以内的数字,AI需要最少的猜测次数,并显示出猜测的次数和数字。4.整点报时老式的挂钟会在整点报时,响铃的次数和时间是一致的。我们设计了一个在电脑上运行的报时
recommend-type

俄罗斯RTSD数据集实现交通标志实时检测

资源摘要信息:"实时交通标志检测" 在当今社会,随着道路网络的不断扩展和汽车数量的急剧增加,交通标志的正确识别对于驾驶安全具有极其重要的意义。为了提升自动驾驶汽车或辅助驾驶系统的性能,研究者们开发了各种算法来实现实时交通标志检测。本文将详细介绍一项关于实时交通标志检测的研究工作及其相关技术和应用。 ### 俄罗斯交通标志数据集(RTSD) 俄罗斯交通标志数据集(RTSD)是专门为训练和测试交通标志识别算法而设计的数据集。数据集内容丰富,包含了大量的带标记帧、交通符号类别、实际的物理交通标志以及符号图像。具体来看,数据集提供了以下重要信息: - 179138个带标记的帧:这些帧来源于实际的道路视频,每个帧中可能包含一个或多个交通标志,每个标志都经过了精确的标注和分类。 - 156个符号类别:涵盖了俄罗斯境内常用的各种交通标志,每个类别都有对应的图像样本。 - 15630个物理符号:这些是实际存在的交通标志实物,用于训练和验证算法的准确性。 - 104358个符号图像:这是一系列经过人工标记的交通标志图片,可以用于机器学习模型的训练。 ### 实时交通标志检测模型 在该领域中,深度学习模型尤其是卷积神经网络(CNN)已经成为实现交通标志检测的关键技术。在描述中提到了使用了yolo4-tiny模型。YOLO(You Only Look Once)是一种流行的实时目标检测系统,YOLO4-tiny是YOLO系列的一个轻量级版本,它在保持较高准确率的同时大幅度减少计算资源的需求,适合在嵌入式设备或具有计算能力限制的环境中使用。 ### YOLO4-tiny模型的特性和优势 - **实时性**:YOLO模型能够实时检测图像中的对象,处理速度远超传统的目标检测算法。 - **准确性**:尽管是轻量级模型,YOLO4-tiny在多数情况下仍能保持较高的检测准确性。 - **易集成**:适用于各种应用,包括移动设备和嵌入式系统,易于集成到不同的项目中。 - **可扩展性**:模型可以针对特定的应用场景进行微调,提高特定类别目标的检测精度。 ### 应用场景 实时交通标志检测技术的应用范围非常广泛,包括但不限于: - 自动驾驶汽车:在自动驾驶系统中,能够实时准确地识别交通标志是保证行车安全的基础。 - 智能交通系统:交通标志的实时检测可以用于交通流量监控、违规检测等。 - 辅助驾驶系统:在辅助驾驶系统中,交通标志的自动检测可以帮助驾驶员更好地遵守交通规则,提升行驶安全。 - 车辆导航系统:通过实时识别交通标志,导航系统可以提供更加精确的路线规划和预警服务。 ### 关键技术点 - **图像处理技术**:包括图像采集、预处理、增强等步骤,为后续的识别模型提供高质量的输入。 - **深度学习技术**:利用深度学习尤其是卷积神经网络(CNN)进行特征提取和模式识别。 - **数据集构建**:构建大规模、多样化的高质量数据集对于训练准确的模型至关重要。 ### 结论 本文介绍的俄罗斯交通标志数据集以及使用YOLO4-tiny模型进行实时交通标志检测的研究工作,显示了在该领域应用最新技术的可能性。随着计算机视觉技术的不断进步,实时交通标志检测算法将变得更加准确和高效,进一步推动自动驾驶和智能交通的发展。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

预测区间与置信区间:机器学习中的差异与联系

# 1. 机器学习中的统计基础 在当今数据驱动的时代,机器学习已经成为了理解大数据的关键途径。在这一章节中,我们将探索机器学习与统计学之间密不可分的关系,重点介绍统计学在机器学习中的核心地位及其应用。我们将从最基本的统计概念入手,为读者建立起机器学习中的统计基础。 ## 1.1 统计学的核心概念 统计学为我们提供了一套强大的工具,用以描述、分析以及从数据中得出结论。核心概念包括均值、方差、标准差等描述性统计指标,它们是理解数据集基本特征的关键。 ## 1.2 统计推断基础 统计推断是建立在概率论基础上的,允许我们在有限的数据样本上做出关于整体的结论。我们将解释置信区间和假设检验等基本概念
recommend-type

基于KNN通过摄像头实现0-9的识别python代码

基于KNN(K-Nearest Neighbors,最近邻算法)实现摄像头实时抓取图像并识别0-9数字的Python代码需要几个步骤,包括数据预处理、训练模型和实际应用。这里是一个简化版本的示例: ```python # 导入必要的库 import cv2 from sklearn.neighbors import KNeighborsClassifier import numpy as np # 数据预处理:假设你已经有一个包含手写数字的训练集 # 这里只是一个简化的例子,实际情况下你需要一个完整的图像数据集 # X_train (特征矩阵) 和 y_train (标签) X_train
recommend-type

易语言开发的文件批量改名工具使用Ex_Dui美化界面

资源摘要信息:"文件批量改名工具-易语言"是一个专门用于批量修改文件名的软件工具,它采用的编程语言是“易语言”,该语言是为中文用户设计的,其特点是使用中文作为编程关键字,使得中文用户能够更加容易地编写程序代码。该工具在用户界面上使用了Ex_Dui库进行美化,Ex_Dui是一个基于易语言开发的UI界面库,能够让开发的应用程序界面更美观、更具有现代感,增加了用户体验的舒适度。 【易语言知识点】: 易语言是一种简单易学的编程语言,特别适合没有编程基础的初学者。它采用了全中文的关键字和语法结构,支持面向对象的编程方式。易语言支持Windows平台的应用开发,并且可以轻松调用Windows API,实现复杂的功能。易语言的开发环境提供了丰富的组件和模块,使得开发各种应用程序变得更加高效。 【Ex_Dui知识点】: Ex_Dui是一个专为易语言设计的UI(用户界面)库,它为易语言开发的应用程序提供了大量的预制控件和风格,允许开发者快速地制作出外观漂亮、操作流畅的界面。使用Ex_Dui库可以避免编写繁琐的界面绘制代码,提高开发效率,同时使得最终的软件产品能够更加吸引用户。 【开源大赛知识点】: 2019开源大赛(第四届)是指在2019年举行的第四届开源软件开发竞赛活动。这类活动通常由开源社区或相关组织举办,旨在鼓励开发者贡献开源项目,推广开源文化和技术交流,提高软件开发的透明度和协作性。参与开源大赛的作品往往需要遵循开放源代码的许可协议,允许其他开发者自由使用、修改和分发代码。 【压缩包子文件的文件名称列表知识点】: 文件名称列表中包含了几个关键文件: - libexdui.dll:这显然是一个动态链接库文件,即DLL文件,它是由Ex_Dui库提供的,用于提供程序运行时所需的库函数和资源。DLL文件可以让程序调用相应的函数,实现特定的功能。 - 文件批量改名工具.e:这可能是易语言编写的主程序文件,带有.e扩展名,表明它是一个易语言源代码文件。 - Default.ext:这个文件名没有给出具体扩展名,可能是一个配置文件或默认设置文件,用户可以通过修改它来自定义软件的行为。 - Source:这可能是一个包含易语言源代码的目录,里面应该包含了文件批量改名工具的源代码,供开发者阅读和学习。 - Res:这个目录通常用于存放资源文件,如图形、声音等。在易语言项目中,Res目录下可能存放了程序运行所需的各种资源文件。 通过对标题、描述、标签以及文件名列表的分析,我们可以了解到这款文件批量改名工具采用了易语言编程,并且界面通过Ex_Dui库进行美化。它可能被提交到了2019年第四届开源大赛中,是开发者为用户提供的一个实用工具,用于提高处理文件时的效率。
recommend-type

"互动学习:行动中的多样性与论文攻读经历"

多样性她- 事实上SCI NCES你的时间表ECOLEDO C Tora SC和NCESPOUR l’Ingén学习互动,互动学习以行动为中心的强化学习学会互动,互动学习,以行动为中心的强化学习计算机科学博士论文于2021年9月28日在Villeneuve d'Asq公开支持马修·瑟林评审团主席法布里斯·勒菲弗尔阿维尼翁大学教授论文指导奥利维尔·皮耶昆谷歌研究教授:智囊团论文联合主任菲利普·普雷教授,大学。里尔/CRISTAL/因里亚报告员奥利维耶·西格德索邦大学报告员卢多维奇·德诺耶教授,Facebook /索邦大学审查员越南圣迈IMT Atlantic高级讲师邀请弗洛里安·斯特鲁布博士,Deepmind对于那些及时看到自己错误的人...3谢谢你首先,我要感谢我的两位博士生导师Olivier和Philippe。奥利维尔,"站在巨人的肩膀上"这句话对你来说完全有意义了。从科学上讲,你知道在这篇论文的(许多)错误中,你是我可以依