Browse Source

Merge pull request #1539 from mcspr/hb/typo

Fix HEARTBEAT_REPORT_DESCRIPTION typo
pull/1553/head
Xose Pérez 5 years ago
committed by GitHub
parent
commit
14a5f12239
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      code/espurna/config/general.h
  2. +1
    -1
      code/espurna/utils.ino

+ 2
- 2
code/espurna/config/general.h View File

@ -235,8 +235,8 @@
#define HEARTBEAT_REPORT_HOSTNAME 1
#endif
#ifndef HEARTBEAT_REPORT_DESCRITION
#define HEARTBEAT_REPORT_DESCRITION 1
#ifndef HEARTBEAT_REPORT_DESCRIPTION
#define HEARTBEAT_REPORT_DESCRIPTION 1
#endif
#ifndef HEARTBEAT_REPORT_APP


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

@ -181,7 +181,7 @@ namespace Heartbeat {
(Relay * (HEARTBEAT_REPORT_RELAY)) | \
(Light * (HEARTBEAT_REPORT_LIGHT)) | \
(Hostname * (HEARTBEAT_REPORT_HOSTNAME)) | \
(Description * (HEARTBEAT_REPORT_DESCRITION)) | \
(Description * (HEARTBEAT_REPORT_DESCRIPTION)) | \
(App * (HEARTBEAT_REPORT_APP)) | \
(Version * (HEARTBEAT_REPORT_VERSION)) | \
(Board * (HEARTBEAT_REPORT_BOARD)) | \


Loading…
Cancel
Save