1 Star 5 Fork 4

yshark/Hex2Bin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
hextobin.h 896 Bytes
一键复制 编辑 原始数据 按行查看 历史
yshark 提交于 2024-03-17 01:54 . 第一次提交
#ifndef HEXTOBIN_H
#define HEXTOBIN_H
#ifdef __cplusplus
extern "C"{
#endif
#include "stdint.h"
#define HEX_MAX_LENGTH 521
#define HEX_MIN_LEN 11
typedef enum {
RES_OK = 0, //正确
RES_DATA_TOO_LONG, //数据太长
RES_DATA_TOO_SHORT, //数据太短
RES_NO_COLON, //无标号
RES_TYPE_ERROR, //类型出错,或许不存在
RES_LENGTH_ERROR, //数据长度字段和内容的总长度不对应
RES_CHECK_ERROR, //校验错误
RES_HEX_FILE_NOT_EXIST, //HEX文件不存在
RES_BIN_FILE_PATH_ERROR,//BIN文件路径可能不正确
RES_WRITE_ERROR, //写数据出错
RES_HEX_FILE_NO_END //hex文件没有结束符
} RESULT_STATUS;
typedef struct {
uint8_t len;
uint8_t type;
uint16_t addr;
uint8_t *data;
} BinFarmat;
RESULT_STATUS HexFile2BinFile(char *src, char *dest);
#ifdef __cplusplus
}
#endif
#endif // HEXTOBIN_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/sharkisyou/hex2-bin.git
[email protected]:sharkisyou/hex2-bin.git
sharkisyou
hex2-bin
Hex2Bin
master

搜索帮助