Compare commits
2 Commits
5250423d1d
...
cf27954a86
Author | SHA1 | Date | |
---|---|---|---|
cf27954a86 | |||
f84e3284ab |
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
## Fixed
|
||||
|
||||
- Use `modetree::connectModeTreeParent` in `PowerSwitcherComponent` to connect mode tree parent.
|
||||
- Pool Manager now enables the `spillToHigherPools` option in `LocalPool` parent.
|
||||
|
||||
## Changed
|
||||
|
||||
@@ -19,7 +20,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
- Simplify `PeriodicHousekeepingHelper`: No non-diagnostic handling.
|
||||
Start removing the distinction between diagnostics and regular
|
||||
HK packets.
|
||||
- Pool Manager now allows enabling the `spillToHigherPools` option.
|
||||
|
||||
# [v6.0.0]
|
||||
|
||||
|
@@ -2,8 +2,8 @@
|
||||
|
||||
#include "fsfw/FSFW.h"
|
||||
|
||||
PoolManager::PoolManager(object_id_t setObjectId, const LocalPoolConfig& localPoolConfig, bool spillToHigherPools)
|
||||
: LocalPool(setObjectId, localPoolConfig, true, spillToHigherPools) {
|
||||
PoolManager::PoolManager(object_id_t setObjectId, const LocalPoolConfig& localPoolConfig)
|
||||
: LocalPool(setObjectId, localPoolConfig, true, true) {
|
||||
mutex = MutexFactory::instance()->createMutex();
|
||||
}
|
||||
|
||||
|
@@ -21,7 +21,7 @@
|
||||
*/
|
||||
class PoolManager : public LocalPool {
|
||||
public:
|
||||
PoolManager(object_id_t setObjectId, const LocalPoolConfig& poolConfig, bool spillToHigherPools);
|
||||
PoolManager(object_id_t setObjectId, const LocalPoolConfig& poolConfig);
|
||||
|
||||
/**
|
||||
* @brief In the PoolManager's destructor all allocated memory
|
||||
|
Reference in New Issue
Block a user