1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-24 19:42:27 +03:00

Allow override of macros in core_version.h (#5268)

This commit is contained in:
Sen Haerens
2018-11-30 00:16:58 +01:00
committed by Earle F. Philhower, III
parent 440a3aae7f
commit 1fb9b4e0ee

View File

@ -1,5 +1,10 @@
#ifndef ARDUINO_ESP8266_GIT_VER
#define ARDUINO_ESP8266_GIT_VER 0x00000000
#endif
#ifndef ARDUINO_ESP8266_GIT_DESC
#define ARDUINO_ESP8266_GIT_DESC unspecified
#endif
// ARDUINO_ESP8266_RELEASE is defined for released versions as a string containing the version name, i.e. "2_3_0_RC1"
// ARDUINO_ESP8266_RELEASE is used in the core internally. Please use ESP.getCoreVersion() function instead.