user_version.h 345 B

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