最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

winforms - Clear All DTC using CAN message - Stack Overflow

programmeradmin0浏览0评论

I have create 1 winform to send and read CAN Message of ECU and when i create function Clear All DTC with command: 0x14 0xFF 0xFF 0xFF, Message Response is 7F 14 78 (Request Correctly Received – Response Pending). I add Thread.Sleep to wait for response but it doesn't work very well.

if (receivedMes.DATA[0] == 0x7F && receivedMes.DATA[2] == 0x78)
{
    clsLogManager.LogWarning("Received NRC 0x78, waiting for extended time...");
    Thread.Sleep(m_nIOTimeOut * 50);

    receivedMes = GetResponseClearDTC(ECU_DID.ClearDTCInformation, m_nIOTimeOut);
    if (receivedMes == null || receivedMes.ID == 0 || receivedMes.LENGTH == 0) return false;
}

Help me pls. Thank you.

发布评论

评论列表(0)

  1. 暂无评论