Skip to content

Commit 18f321a

Browse files
Removed InitCompleteCallback, ensured that failures in Init will get an error trace
1 parent f9dbeb0 commit 18f321a

File tree

3 files changed

+7
-19
lines changed

3 files changed

+7
-19
lines changed

examples/lighting-app/silabs/src/AppTask.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ CHIP_ERROR AppTask::AppInit()
103103
#endif // QR_CODE_ENABLED
104104
#endif
105105

106-
BaseApplication::InitCompleteCallback(err);
107106
return err;
108107
}
109108

examples/platform/silabs/BaseApplication.cpp

+7-10
Original file line numberDiff line numberDiff line change
@@ -306,18 +306,21 @@ CHIP_ERROR BaseApplication::Init()
306306
{
307307
SILABS_LOG("BaseInit() failed");
308308
appError(err);
309-
return err;
310309
}
311310

312-
err = AppInit();
311+
if (err == CHIP_NO_ERROR)
312+
{
313+
err = AppInit();
314+
}
315+
313316
if (err != CHIP_NO_ERROR)
314317
{
315318
SILABS_LOG("AppInit() failed");
316319
appError(err);
317-
return err;
318320
}
319321

320-
InitCompleteCallback(err);
322+
SILABS_TRACE_END_ERROR(TimeTraceOperation::kAppInit, err);
323+
SILABS_TRACE_END_ERROR(TimeTraceOperation::kBootup, err);
321324
return err;
322325
}
323326

@@ -403,12 +406,6 @@ CHIP_ERROR BaseApplication::BaseInit()
403406
return err;
404407
}
405408

406-
void BaseApplication::InitCompleteCallback(CHIP_ERROR err)
407-
{
408-
SILABS_TRACE_END(TimeTraceOperation::kAppInit);
409-
SILABS_TRACE_END(TimeTraceOperation::kBootup);
410-
}
411-
412409
void BaseApplication::FunctionTimerEventHandler(void * timerCbArg)
413410
{
414411
AppEvent event;

examples/platform/silabs/BaseApplication.h

-8
Original file line numberDiff line numberDiff line change
@@ -181,14 +181,6 @@ class BaseApplication
181181
CHIP_ERROR BaseInit();
182182
virtual CHIP_ERROR AppInit() { return CHIP_NO_ERROR; }
183183

184-
/** @brief
185-
* Function to be called at the end of Init to indicate that the application has completed its initialization.
186-
* Currently only used for tracing, might want to move logging here as well in the future
187-
* @param err CHIP_NO_ERROR on success, corresponding error code on Init failure, note that Init failure leads to an app error
188-
* so this is purely to have a trace logged with the error code
189-
*/
190-
void InitCompleteCallback(CHIP_ERROR err);
191-
192184
/**
193185
* @brief Function called to start the function timer
194186
*

0 commit comments

Comments
 (0)