__main_static.h 745 B

12345678910111213141516171819202122
  1. /*
  2. The static Storage Class
  3. The static storage class instructs the compiler to keep a local variable
  4. in existence during the life-time of the program instead of creating and
  5. destroying it each time it comes into and goes out of scope. Therefore,
  6. making local variables static allows them to maintain their values between
  7. function calls.
  8. The static modifier may also be applied to global variables. When this is done,
  9. it causes that variable's scope to be restricted to the file in which it is declared.
  10. In C programming, when static is used on a global variable, it causes only one
  11. copy of that member to be shared by all the objects of its class.
  12. */
  13. static ARDUINO_ARRAY_time_min_run_MIN_T ARDUINO_ARRAY_time_min_run_MIN_A;