Skip to content

Commit b1a45fd

Browse files
author
Norbert Richter
committed
Update v14.0.0.4 settings
1 parent 2ac3744 commit b1a45fd

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Comparing backup files created by **decode-config** and [.dmp](#dmp-format) file
4343
Using the latest development version of decode-config is only necessary if you also use the latest development version of Tasmota.
4444

4545
<!-- markdownlint-disable MD033 -->
46-
[![development version](https://img.shields.io/badge/development-v14.0.0.3-blue.svg)](https://github.com/tasmota/decode-config/tree/development)
46+
[![development version](https://img.shields.io/badge/development-v14.0.0.4-blue.svg)](https://github.com/tasmota/decode-config/tree/development)
4747

4848
## Table of contents
4949
<details>

decode-config.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33
from __future__ import print_function
44
METADATA = {
5-
'VERSION': '14.0.0.3',
5+
'VERSION': '14.0.0.4',
66
'DESCRIPTION': 'Backup/restore and decode configuration tool for Tasmota',
77
'CLASSIFIER': 'Development Status :: 4 - Beta',
88
'URL': 'https://github.com/tasmota/decode-config',
@@ -2842,10 +2842,13 @@ def match(self, setting_hardware, config_version):
28422842
'telegram_disable_af': (HARDWARE.ESP, '<L', (0xFA0,1,12), (None, '0 <= $ <= 1', ('Telegram', '"TmState {}".format($+6)')) ),
28432843
})
28442844
# ======================================================================
2845-
SETTING_14_0_0_3 = copy.copy(SETTING_14_0_0_2)
2845+
SETTING_14_0_0_4 = copy.copy(SETTING_14_0_0_2)
2846+
SETTING_14_0_0_4.update ({
2847+
'tcp_baudrate': (HARDWARE.ESP, '<H', 0x540, (None, None, ('Serial', '"TCPBaudrate {}".format($)')), ('$ * 1200','$ // 1200') ),
2848+
})
28462849
# ======================================================================
28472850
SETTINGS = [
2848-
(0x0E000003,0x1000, SETTING_14_0_0_3),
2851+
(0x0E000004,0x1000, SETTING_14_0_0_4),
28492852
(0x0E000002,0x1000, SETTING_14_0_0_2),
28502853
(0x0D040004,0x1000, SETTING_13_4_0_4),
28512854
(0x0D030005,0x1000, SETTING_13_3_0_5),

0 commit comments

Comments
 (0)