18 lines
347 B
C
18 lines
347 B
C
#ifndef __USER_VERSION_H__
|
|
#define __USER_VERSION_H__
|
|
|
|
#define NODE_VERSION_MAJOR 0U
|
|
#define NODE_VERSION_MINOR 0U
|
|
#define NODE_VERSION_REVISION 0U
|
|
#define NODE_VERSION_INTERNAL 0U
|
|
|
|
#define NODE_VERSION "NodeMCU ESP32"
|
|
#ifndef BUILD_DATE
|
|
#define BUILD_DATE "unspecified"
|
|
#endif
|
|
|
|
#define SDK_VERSION IDF_VER
|
|
|
|
#endif /* __USER_VERSION_H__ */
|
|
|