diff --git a/CHANGELOG.md b/CHANGELOG.md index ce93a42e9..58b14dc59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.7.1] 2019-05-17 + +### Added + +- new device: MM50 Mixer ([thanks GARLAGANDIS](https://github.com/proddy/EMS-ESP/issues/111)) + +### Fixed + +- runtime exceptions with latest 2.5.1 arduino core library + ## [1.7.0] 2019-05-11 ### Added diff --git a/lib/MyESP/MyESP.cpp b/lib/MyESP/MyESP.cpp index 2997543aa..ac1b4adcb 100644 --- a/lib/MyESP/MyESP.cpp +++ b/lib/MyESP/MyESP.cpp @@ -906,14 +906,14 @@ void MyESP::showSystemStats() { char buffer[16] = {0}; /* Crash info */ myDebug_P(PSTR(" [EEPROM] EEPROM size: %u"), EEPROMr.reserved() * SPI_FLASH_SEC_SIZE); - strlcpy(output_str, PSTR(" [EEPROM] EEPROM Sector pool size is "), sizeof(output_str)); + strlcpy(output_str, " [EEPROM] EEPROM Sector pool size is ", sizeof(output_str)); strlcat(output_str, itoa(EEPROMr.size(), buffer, 10), sizeof(output_str)); - strlcat(output_str, PSTR(", and in use are: "), sizeof(output_str)); + strlcat(output_str, ", and in use are: ", sizeof(output_str)); for (uint32_t i = 0; i < EEPROMr.size(); i++) { strlcat(output_str, itoa(EEPROMr.base() - i, buffer, 10), sizeof(output_str)); - strlcat(output_str, PSTR(" "), sizeof(output_str)); + strlcat(output_str, " ", sizeof(output_str)); } - myDebug_P(output_str); + myDebug(output_str); #endif #ifdef ARDUINO_BOARD diff --git a/lib/MyESP/MyESP.h b/lib/MyESP/MyESP.h index eed927d77..513cc01e6 100644 --- a/lib/MyESP/MyESP.h +++ b/lib/MyESP/MyESP.h @@ -9,7 +9,7 @@ #ifndef MyEMS_h #define MyEMS_h -#define MYESP_VERSION "1.1.10" +#define MYESP_VERSION "1.1.11" #include #include diff --git a/src/ems-esp.cpp b/src/ems-esp.cpp index b9caf386c..c059bcf20 100644 --- a/src/ems-esp.cpp +++ b/src/ems-esp.cpp @@ -93,7 +93,7 @@ typedef struct { bool doingColdShot; // true if we've just sent a jolt of cold water } _EMSESP_Shower; -command_t PROGMEM project_cmds[] = { +command_t project_cmds[] = { {true, "led ", "toggle status LED on/off"}, {true, "led_gpio ", "set the LED pin. Default is the onboard LED (D1=5)"}, diff --git a/src/version.h b/src/version.h index fc8dc5997..29e33f3ca 100644 --- a/src/version.h +++ b/src/version.h @@ -6,5 +6,5 @@ #pragma once #define APP_NAME "EMS-ESP" -#define APP_VERSION "1.7.0" +#define APP_VERSION "1.7.1" #define APP_HOSTNAME "ems-esp"