摘要:
void StringToByte(char* source, uint8_t* dest, int sourceLen) { int i; uint8_t highByte, lowByte; for (i = 0; i < sourceLen; i += 2) { highByte = toup 阅读全文
摘要:
typedef struct { unsigned char *buffer;//待切割数据 unsigned int bufferLen;//待切割数据长度 unsigned int index;//当前切割数据索引 unsigned int dataMaxLen;//每次切割数据最大长度 uns 阅读全文