@@ -39,7 +39,7 @@ extern void obcTaskInitEpsMgr(void);
3939extern void obcTaskInitPayloadMgr (void );
4040extern void obcTaskInitTimekeeper (void );
4141extern void obcTaskInitAlarmMgr (void );
42- extern void obcTaskInitHealthCollector (void );
42+ extern void obcTaskInitThermalMgr (void );
4343extern void obcTaskInitStatsCollector (void );
4444extern void obcTaskInitLogger (void );
4545extern void obcTaskInitGncMgr (void );
@@ -56,7 +56,7 @@ extern void obcTaskFunctionPayloadMgr(void *params);
5656extern void obcTaskFunctionTimekeeper (void * params );
5757extern void obcTaskFunctionSwWatchdog (void * params );
5858extern void obcTaskFunctionAlarmMgr (void * params );
59- extern void obcTaskFunctionHealthCollector (void * params );
59+ extern void obcTaskFunctionThermalMgr (void * params );
6060extern void obcTaskFunctionStatsCollector (void * params );
6161extern void obcTaskFunctionLogger (void * params );
6262extern void obcTaskFunctionGncMgr (void * params );
@@ -87,8 +87,8 @@ static StackType_t obcTaskStackSwWatchdog[128U];
8787static StaticTask_t obcTaskBufferSwWatchdog ;
8888static StackType_t obcTaskStackAlarmMgr [512U ];
8989static StaticTask_t obcTaskBufferAlarmMgr ;
90- static StackType_t obcTaskStackHealthCollector [256U ];
91- static StaticTask_t obcTaskBufferHealthCollector ;
90+ static StackType_t obcTaskStackThermalMgr [256U ];
91+ static StaticTask_t obcTaskBufferThermalMgr ;
9292#if ENABLE_TASK_STATS_COLLECTOR == 1
9393static StackType_t obcTaskStackStatsCollector [1024U ];
9494static StaticTask_t obcTaskBufferStatsCollector ;
@@ -209,15 +209,15 @@ static obc_scheduler_config_t obcSchedulerConfig[] = {
209209 .taskFunc = obcTaskFunctionAlarmMgr ,
210210 .taskInit = obcTaskInitAlarmMgr ,
211211 },
212- [OBC_SCHEDULER_CONFIG_ID_HEALTH_COLLECTOR ] =
212+ [OBC_SCHEDULER_CONFIG_ID_THERMAL_MGR ] =
213213 {
214- .taskName = "health_collector " ,
215- .taskStack = obcTaskStackHealthCollector ,
216- .taskBuffer = & obcTaskBufferHealthCollector ,
214+ .taskName = "thermal_mgr " ,
215+ .taskStack = obcTaskStackThermalMgr ,
216+ .taskBuffer = & obcTaskBufferThermalMgr ,
217217 .stackSize = 256U ,
218218 .priority = 1U ,
219- .taskFunc = obcTaskFunctionHealthCollector ,
220- .taskInit = obcTaskInitHealthCollector ,
219+ .taskFunc = obcTaskFunctionThermalMgr ,
220+ .taskInit = obcTaskInitThermalMgr ,
221221 },
222222#if ENABLE_TASK_STATS_COLLECTOR == 1
223223 [OBC_SCHEDULER_CONFIG_ID_STATS_COLLECTOR ] =
0 commit comments