1
0
forked from fsfw/fsfw

Merge branch 'mueller_localPoolNeat' of https://egit.irs.uni-stuttgart.de/KSat/fsfw into mueller_localPoolNeat

This commit is contained in:
2020-06-04 14:22:16 +02:00
51 changed files with 270 additions and 155 deletions

View File

@ -50,6 +50,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;
}
};
/**