浏览代码

Update Stream.cpp

main
Frank 6 年前
父节点
当前提交
06522dc2b1
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 7 次插入3 次删除
  1. +7
    -3
      teensy4/Stream.cpp

+ 7
- 3
teensy4/Stream.cpp 查看文件



// find returns true if the target string is found // find returns true if the target string is found
bool Stream::find(const char *target) bool Stream::find(const char *target)
{
{
return findUntil(target, NULL); return findUntil(target, NULL);
} }


// as find but search ends if the terminator string is found // as find but search ends if the terminator string is found
bool Stream::findUntil(const char *target, const char *terminator) bool Stream::findUntil(const char *target, const char *terminator)
{ {
if(target == NULL) return true;
if(terminator == NULL) return true;
return findUntil(target, strlen(target), terminator, strlen(terminator)); return findUntil(target, strlen(target), terminator, strlen(terminator));
} }


size_t termIndex = 0; size_t termIndex = 0;
int c; int c;


if( *target == 0)
return true; // return true if target is a null string
if( target == NULL) return true;
if( *target == 0) return true; // return true if target is a null string
if(terminator == NULL) return true;
while( (c = timedRead()) > 0){ while( (c = timedRead()) > 0){
if( c == target[index]){ if( c == target[index]){
//////Serial.print("found "); Serial.write(c); Serial.print("index now"); Serial.println(index+1); //////Serial.print("found "); Serial.write(c); Serial.print("index now"); Serial.println(index+1);

正在加载...
取消
保存