mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-30 21:12:55 +08:00
bdd54648f4
* Update LWIP from SDK * mbedTLS integration * Fix argument type in dbg_printf (#1624) * Migrate to espressif’s download center (#1604) * Fixed BBS links to firmware * Adjust net module docs with mbedTLS info * Remove unrelevant axTLS notice
17 lines
345 B
C
17 lines
345 B
C
#ifndef __USER_VERSION_H__
|
|
#define __USER_VERSION_H__
|
|
|
|
#define NODE_VERSION_MAJOR 2U
|
|
#define NODE_VERSION_MINOR 0U
|
|
#define NODE_VERSION_REVISION 0U
|
|
#define NODE_VERSION_INTERNAL 0U
|
|
|
|
#define NODE_VERSION "NodeMCU 2.0.0"
|
|
#ifndef BUILD_DATE
|
|
#define BUILD_DATE "unspecified"
|
|
#endif
|
|
|
|
extern char SDK_VERSION[];
|
|
|
|
#endif /* __USER_VERSION_H__ */
|