Skip to content

Commit

Permalink
split up wifiserial
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Jun 13, 2021
1 parent 321a2fa commit 952afa3
Show file tree
Hide file tree
Showing 6 changed files with 738 additions and 902 deletions.
2 changes: 1 addition & 1 deletion Marlin/src/core/macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@
return contains(str, '/') ? findLastPos(findStringEnd(str), '/') : str;
}

// Find the first occurence of a character in a string (or return the last position in the string)
// Find the first occurrence of a character in a string (or return the last position in the string)
constexpr const char* findFirst(const char *str, const char ch) {
return *str == ch || *str == 0 ? (str + 1) : findFirst(str + 1, ch);
}
Expand Down
Loading

0 comments on commit 952afa3

Please sign in to comment.