added comparison operator for store_address_t #77

Merged
gaisser merged 1 commits from KSat/fsfw:mueller_store_address_compOperator into master 2020-05-25 14:54:30 +02:00

View File

@ -48,6 +48,10 @@ union store_address_t {
* Alternative access to the raw value.
*/
uint32_t raw;
bool operator==(const store_address_t& other) const {
return raw == other.raw;
}
};
/**