Browse Source

Show Core revision as hex string (#1786)

pull/1790/head
Max Prokhorov 5 years ago
committed by GitHub
parent
commit
0dbfce1444
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      code/espurna/utils.ino

+ 1
- 1
code/espurna/utils.ino View File

@ -50,7 +50,7 @@ String getCoreVersion() {
String getCoreRevision() {
#ifdef ARDUINO_ESP8266_GIT_VER
return String(ARDUINO_ESP8266_GIT_VER);
return String(ARDUINO_ESP8266_GIT_VER, 16);
#else
return String("");
#endif


Loading…
Cancel
Save