mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-30 21:12:55 +08:00
a463d764eb
Currently the UART driver break boot (or at least output).
17 lines
344 B
C
17 lines
344 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"
|
|
|
|
#endif /* __USER_VERSION_H__ */
|