Skip to content

Commit 9b94817

Browse files
Update examples/platform/silabs/BaseApplication.h
Co-authored-by: Mathieu Kardous <84793247+mkardous-silabs@users.noreply.github.com>
1 parent 5a1af5c commit 9b94817

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

examples/platform/silabs/BaseApplication.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,10 @@ class BaseApplication
177177
protected:
178178
CHIP_ERROR Init();
179179
CHIP_ERROR BaseInit();
180-
virtual CHIP_ERROR AppInit() { return CHIP_NO_ERROR; }
180+
/** @brief Template for to implement a Application specific init.
181+
* Function is called after the BaseApplication::Init function.
182+
*/
183+
virtual CHIP_ERROR AppInit() = 0;
181184

182185
/**
183186
* @brief Function called to start the function timer

0 commit comments

Comments
 (0)