1
0
Fork 0

add note about the need to collapse the superposition of status

This commit is contained in:
Kevin Matz 2022-12-02 15:47:51 -05:00
parent e0394e4413
commit a03ef79d5d
1 changed files with 4 additions and 1 deletions

View File

@ -154,10 +154,13 @@ void Universe::altSCdata(const std::vector<uint8_t> & data)
/**
* @brief Universe::status
* @return
*
* Like Schrödinger's cat, the status of the universe may exist in a superpostion
* of states. Only by observing it will it collaps into a single status.
*/
uint8_t Universe::status()
{
rx_timeout_();
rx_timeout_(); // many things may have happened since the last observation
return status_;
}