Merge pull request #9118 from hallard/teleinfo

Fixed compilation bug due to unimplemented feature in lib_teleinfo
This commit is contained in:
Theo Arends 2020-08-18 09:17:42 +02:00 committed by GitHub
commit 0e8727830a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -187,7 +187,6 @@ void DataCallback(struct _ValueList * me, uint8_t flags)
if (flags & TINFO_FLAGS_ADDED) { c = '#'; } if (flags & TINFO_FLAGS_ADDED) { c = '#'; }
if (flags & TINFO_FLAGS_UPDATED) { c = '*'; } if (flags & TINFO_FLAGS_UPDATED) { c = '*'; }
if (flags & TINFO_FLAGS_STRING) { c = '$'; }
AddLog_P2(LOG_LEVEL_DEBUG, PSTR("TIC: [%d]%c %s=%s"), ilabel, c , me->name, me->value); AddLog_P2(LOG_LEVEL_DEBUG, PSTR("TIC: [%d]%c %s=%s"), ilabel, c , me->name, me->value);
if (ilabel<LABEL_END) { if (ilabel<LABEL_END) {
@ -360,7 +359,7 @@ void ResponseAppendTInfo()
ResponseAppend_P( PSTR("%c\"%s\":"), sep, me->name ); ResponseAppend_P( PSTR("%c\"%s\":"), sep, me->name );
if (!isNumber || (me->flags & TINFO_FLAGS_STRING) ) { if (!isNumber) {
ResponseAppend_P( PSTR("\"%s\""), me->value ); ResponseAppend_P( PSTR("\"%s\""), me->value );
} else { } else {
ResponseAppend_P( PSTR("%d"), atoi(me->value)); ResponseAppend_P( PSTR("%d"), atoi(me->value));