C3603: Static '<Function>' was not defined

[WARNING]

Description

A static function was used, but not defined. As static functions can only be defined in this compilation unit, the function using the undefined static cannot successfully link.

Example
  static void f(void);

  
  void main(void) {

  
    f();

  
  }

  
Tips

Define the static function, remove its usage or declare it as external.