user_version.h 345 B

12345678910111213141516
  1. #ifndef __USER_VERSION_H__
  2. #define __USER_VERSION_H__
  3. #define NODE_VERSION_MAJOR 1U
  4. #define NODE_VERSION_MINOR 5U
  5. #define NODE_VERSION_REVISION 4U
  6. #define NODE_VERSION_INTERNAL 0U
  7. #define NODE_VERSION "NodeMCU 1.5.4"
  8. #ifndef BUILD_DATE
  9. #define BUILD_DATE "unspecified"
  10. #endif
  11. extern char SDK_VERSION[];
  12. #endif /* __USER_VERSION_H__ */