made all doubles to floats

This commit is contained in:
proddy
2019-11-04 19:16:07 +01:00
parent 17dc48b376
commit 9f146768b4
5 changed files with 49 additions and 49 deletions

View File

@@ -270,7 +270,7 @@ uint8_t _readIntNumber() {
return atoi(numTextPtr);
}
// used to read the next string from an input buffer and convert to a double
// used to read the next string from an input buffer and convert to a float
float _readFloatNumber() {
char * numTextPtr = strtok(nullptr, ", \n");
if (numTextPtr == nullptr) {