Skip to content

Commit

Permalink
Set 2 methods as public static as they are call from static members o…
Browse files Browse the repository at this point in the history
…f the class but also outside the context of the class. (#22427)
  • Loading branch information
jmartinez-silabs authored and pull[bot] committed Oct 19, 2022
1 parent b899467 commit 5868397
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/platform/efr32/BaseApplication.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ class BaseApplication
/**
* @brief Function called to start the LED light timer
*/
void StartStatusLEDTimer(void);
static void StartStatusLEDTimer(void);

/**
* @brief Function to stop LED light timer
* Turns off Status LED before stopping timer
*/
void StopStatusLEDTimer(void);
static void StopStatusLEDTimer(void);

enum Function_t
{
Expand Down

0 comments on commit 5868397

Please sign in to comment.