mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-16 20:52:57 +08:00
dce0d2c2a8
fixed ap/station-ap cannot connect to the device. added wifi.ap.getconfig(). fixed net.dns.getdnsserver(). added new base64 lua example. added node.bootreason() to inspect boot cause. optimization of u8g.
13 lines
296 B
C
13 lines
296 B
C
#ifndef __USER_VERSION_H__
|
|
#define __USER_VERSION_H__
|
|
|
|
#define NODE_VERSION_MAJOR 0U
|
|
#define NODE_VERSION_MINOR 9U
|
|
#define NODE_VERSION_REVISION 6U
|
|
#define NODE_VERSION_INTERNAL 0U
|
|
|
|
#define NODE_VERSION "NodeMCU 0.9.6"
|
|
#define BUILD_DATE "build 20150627"
|
|
|
|
#endif /* __USER_VERSION_H__ */
|