This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

static key word in user functions

Can I use static key word in user function?

FUNC char StateMachine(void)
{
  static unsigned char _state;

  switch(_state)
  {
    case 0:
      ...
  }
}