v1.10.0 #220

Merged
meierj merged 592 commits from develop into main 2022-04-22 07:42:20 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 27063f102b - Show all commits

View File

@ -113,6 +113,7 @@ ReturnValue_t CoreController::initializeAfterTaskCreation() {
setenv("PATH", updatedEnvPath.c_str(), true);
updateProtInfo();
initPrint();
ExtendedControllerBase::initializeAfterTaskCreation();
return result;
}

View File

@ -5,7 +5,7 @@
namespace core {
static const uint8_t HK_SET_ENTRIES = 2;
static const uint8_t HK_SET_ENTRIES = 3;
static const uint32_t HK_SET_ID = 5;
enum PoolIds {
@ -19,7 +19,6 @@ enum PoolIds {
*/
class HkSet : public StaticLocalDataSet<HK_SET_ENTRIES> {
public:
static const size_t SIZE = 24;
HkSet(HasLocalDataPoolIF* owner) : StaticLocalDataSet(owner, HK_SET_ID) {}