资源简介
S19文件解析,将S19文件格式中的有效数据提取出来,进而可以对车辆的控制器进行运用诊断协议升级
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace S19ToBin
{
struct RowStruct
{
public string Type;
public byte Length;
public string StartAddress;
public string Rdata;
public string Crc;
};
public partial class Form1 : Form
{
public static List listBuffer = new List(); //存储全部flashing升级文件
public static List liststring = new List(); //存储全部flashing
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender EventArgs e)
{
OpenFileDialog fileDialogBootLoader = new OpenFileDialog();
string strPath = System.Environment.CurrentDirectory;
liststring.Clear();
listBuffer.Clear();
fileDialogBootLoader.InitialDirectory = strPath;
fileDialogBootLoader.title = “Please Choose an Upgrade File“;
fileDialogBootLoader.Filter = “ldr files (*.ldr)|*.ldr | All files (*.*) |*.*“;
fileDialogBootLoader.FilterIndex = 2;
fileDialogBootLoader.RestoreDirectory = true;
if (fileDialogBootLoader.ShowDialog() != DialogResult.OK)
{
return;
}
string strFile = fileDialogBootLoader.FileName;
StreamReader _rstream = new StreamReader(strFile System.Text.Encoding.Default);
string line;
while ((line = _rstream.ReadLine()) != null)
{
liststring.Add(line);
}
_rstream.Close();
for (int i = 0; i < liststring.Count; i++ )
{
RowStruct RowStructTemp = new RowStruct();
int iAddrLength = 0;
bool bSucess = false;
if (liststring[i].Length < 2)
{
liststring.Clear();
listBuffer.Clear();
MessageBox.Show(“S19文件格式错误“);
return;
}
RowStructTemp.Type = liststring[i].Substring(0 2);
switch (RowStructTemp.Type)
{
case “S0“:
iAddrLength = 4;
bSucess = RowDataToStruct(liststring[i] iAddrLengthref RowStructTemp);
if (!bSucess)
{
liststring.Clear();
listBuffer.Clear();
MessageBox.Show(“S19文件格式错误“);
return;
}
//string strAddrAndData = RowStructTemp.StartAddress + RowStructTemp.Rdata;
相关资源
- 联想H61主板BIOS升级F9KT58AUS支持22NM.i
- 升腾Win终端系统升级方法新版.doc
- TCL-S1916 ,1924交换机管理程序
- [免费]MW310R V4.0升级软件20140123
- 联想启天M4350 BIOS升级文件
- 详细图解联想Y430\\Y530笔记本SLIC表2.
- 通过串口s19文件源代码
- 三星S19C200NW液晶显示器驱动 v1.0 官方
- 爱普生(EPSON)L3151 3153 3156 3157 3158不
- Infortrend EonStor全光纤磁盘阵列满足交
- SVC微码升级方案
- 飞思卡尔单片机.s19文件方法详解
- S19转BIN文件工具
- SPSS19中文基础教程
- The advanced theory of statistics1945)
- 联想iH61m主板升级BIOS支持I7.E3等22NM
- 神舟笔记本bios版本1.14
-
ST-li
nkv2、v2.1最新官方固件升级工具 - ROS 6.40.3最新破解版 Mikrotik RouterOS L6全
- 志诚 VS.T591_V1.1 升级软件 程序 USB 花屏
- 74cms骑士人才系统升级到最新4.2.131含
- 天音淘宝店铺宝贝批量复制大师V3.2
- SPSS统计分析从入门到精通-数据文件
- openssh 7.9p1 rpm包
- IPv4向IPv6的升级过渡解决方案
- openssh8.1p1离线编译升级包
- Termite最新版1.8.4.zip
- 18节信用变现课重要升级版:掌握信用
- 陕西装备制造业应对欧美国家再工业
- 洛达153x OTA升级软件包加说明
评论
共有 条评论