diff --git a/include/RFID.h b/include/RFID.h index bcec1d8..48fa1c6 100644 --- a/include/RFID.h +++ b/include/RFID.h @@ -23,7 +23,7 @@ struct uidNode { MFRC522Constants::Uid uid{}; uidNode* next = nullptr; - // IDs should be positive integers < 127 as the sign is used for direction. + // IDs should be positive integers < 127 as the sign bit is used for direction. int8_t tag_ID = 0; }; @@ -36,7 +36,7 @@ public: * at a time, another call would be needed to get eventual concurrent events. * This updates the respective lists and returns the ID with the direction * of the change. - * @return 0 if no change, +ID if new tag detected, -ID if the tag left. + * @return 0 if no change, ID if new tag detected, ID & sign bit if the tag left. */ int8_t checkTags(); private: diff --git a/src/main.cpp b/src/main.cpp index ddebea6..c19b04c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -37,7 +37,7 @@ __attribute__((noreturn)) int main() { */ Serial.begin(115200); - Com::sendComment("# System is powered up, running set-up."); + Com::sendComment("System is powered up, running set-up."); /* TODO: Setups once module structure is up. */ RFID rfid;