mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2026-01-26 08:39:09 +03:00
Compare commits
6 Commits
a06c5bb297
...
48f7b48216
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
48f7b48216 | ||
|
|
cd054b293a | ||
|
|
ea6b7c0be0 | ||
|
|
a49a5537d3 | ||
|
|
c407ad04bf | ||
|
|
480e0951b8 |
@@ -105,7 +105,7 @@ build_type = release
|
|||||||
board_build.filesystem = littlefs
|
board_build.filesystem = littlefs
|
||||||
lib_deps =
|
lib_deps =
|
||||||
bblanchon/ArduinoJson @ 7.4.2
|
bblanchon/ArduinoJson @ 7.4.2
|
||||||
ESP32Async/AsyncTCP @ 3.4.9
|
ESP32Async/AsyncTCP @ 3.4.10
|
||||||
ESP32Async/ESPAsyncWebServer @ 3.9.3
|
ESP32Async/ESPAsyncWebServer @ 3.9.3
|
||||||
https://github.com/emsesp/EMS-ESP-Modules.git @ 1.0.8
|
https://github.com/emsesp/EMS-ESP-Modules.git @ 1.0.8
|
||||||
|
|
||||||
|
|||||||
@@ -1228,7 +1228,7 @@ void Thermostat::process_RC300Summer(std::shared_ptr<const Telegram> telegram) {
|
|||||||
|
|
||||||
if (hc->heatingtype != 3) {
|
if (hc->heatingtype != 3) {
|
||||||
has_update(telegram, hc->designtemp, 4);
|
has_update(telegram, hc->designtemp, 4);
|
||||||
has_update(telegram, hc->minflowtemp, 13);
|
has_update(telegram, hc->minflowtemp, model() == EMSdevice::EMS_DEVICE_FLAG_BC400 ? 13 : 8);
|
||||||
} else {
|
} else {
|
||||||
has_update(telegram, hc->designtemp, 5);
|
has_update(telegram, hc->designtemp, 5);
|
||||||
has_update(telegram, hc->minflowtemp, 8);
|
has_update(telegram, hc->minflowtemp, 8);
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
#define EMSESP_APP_VERSION "3.8.1-dev.2"
|
#define EMSESP_APP_VERSION "3.8.1-dev.3"
|
||||||
|
|||||||
@@ -52,7 +52,8 @@ void EMSuart::uart_event_task(void * pvParameters) {
|
|||||||
uart_read_bytes(EMSUART_NUM, telegram, length, portMAX_DELAY);
|
uart_read_bytes(EMSUART_NUM, telegram, length, portMAX_DELAY);
|
||||||
EMSESP::incoming_telegram(telegram, (uint8_t)(length - 1));
|
EMSESP::incoming_telegram(telegram, (uint8_t)(length - 1));
|
||||||
} else { // flush buffer up to break
|
} else { // flush buffer up to break
|
||||||
uart_flush_input(EMSUART_NUM);
|
uint8_t buf[UART_FIFO_LEN];
|
||||||
|
uart_read_bytes(EMSUART_NUM, buf, length, portMAX_DELAY);
|
||||||
}
|
}
|
||||||
length = 0;
|
length = 0;
|
||||||
} else if (event.type == UART_BUFFER_FULL) {
|
} else if (event.type == UART_BUFFER_FULL) {
|
||||||
|
|||||||
Reference in New Issue
Block a user