Ai
1 Star 0 Fork 0

DFRobot/DFRobot_utility

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
split.cpp 1.35 KB
一键复制 编辑 原始数据 按行查看 历史
lisper 提交于 2015-01-07 12:30 +08:00 . fix
/**************************************************************************/
/*!
@file split.cpp
@author lisper (lisper.li@dfrobot.com)
@license LGPLv3 (see license.txt)
build command string cmdstr
Copyright (C) DFRobot - www.dfrobot.com
*/
/**************************************************************************/
#include <Arduino.h>
#include <DFRobot_utility.h>
#include "split.h"
//#define ARGV_SIZE 8
//#define CMD_BUF_SIZE 32
uint8_t argc;
char cmdBuf[CMD_BUF_SIZE];
char *argv[ARGV_SIZE];
//
void serialReadCmd (HardwareSerial theSerial) {
int leng = serialReads (theSerial, (uint8_t*)cmdBuf, CMD_BUF_SIZE, 4);
if (leng) {
argc = split (argv, cmdBuf, ARGV_SIZE);
} else {
argc = 0;
}
}
//split str to cmdstr by space
int split (char **cmdstr, char *str, int leng) {
int i;
for (i=0; *str && i<leng; i++) {
while (isspace (*str))
*str++='\0';
if (*str == '\0')
break;
cmdstr[i] = str;
while (isgraph (*str))
str++;
}
//*str = '\0';
//cmdstr[i] = '\0';
return i;
}
//split str to cmdstr by space and delimiter
int splitc (uint8_t **cmdstr, uint8_t *str, char delimiter, int leng) {
int i;
for (i=0; *str && i<leng-1; i++) {
while (*str == delimiter || isspace (*str))
*str++='\0';
if (*str == '\0')
break;
cmdstr[i] = str;
while (*str != delimiter)
str++;
}
cmdstr[i] = '\0';
return i;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/dfrobot/DFRobot_utility.git
git@gitee.com:dfrobot/DFRobot_utility.git
dfrobot
DFRobot_utility
DFRobot_utility
master

搜索帮助