Browse Source

hide timestamp consts under ifdef

sensors
Max Prokhorov 5 years ago
parent
commit
4c6116a8f8
1 changed files with 6 additions and 5 deletions
  1. +6
    -5
      code/espurna/debug.ino

+ 6
- 5
code/espurna/debug.ino View File

@ -8,8 +8,6 @@ Copyright (C) 2016-2018 by Xose Pérez <xose dot perez at gmail dot com>
#if DEBUG_SUPPORT #if DEBUG_SUPPORT
constexpr const uint8_t TIMESTAMP_LENGTH = 10;
#if DEBUG_UDP_SUPPORT #if DEBUG_UDP_SUPPORT
#include <WiFiUdp.h> #include <WiFiUdp.h>
WiFiUDP _udp_debug; WiFiUDP _udp_debug;
@ -24,14 +22,17 @@ void _debugSend(char * message) {
bool pause = false; bool pause = false;
#if DEBUG_ADD_TIMESTAMP #if DEBUG_ADD_TIMESTAMP
const char TIMESTAMP_FMT[] = "[%06lu] ";
const uint8_t TIMESTAMP_SIZE = 10;
static bool add_timestamp = true; static bool add_timestamp = true;
size_t offset = 0; size_t offset = 0;
char buffer[TIMESTAMP_LENGTH + msg_len];
char buffer[TIMESTAMP_SIZE + msg_len];
if (add_timestamp) { if (add_timestamp) {
snprintf_P(buffer, TIMESTAMP_LENGTH, PSTR("[%06lu] "), millis() % 1000000);
offset = TIMESTAMP_LENGTH - 1;
snprintf(buffer, TIMESTAMP_SIZE, TIMESTAMP_FMT, millis() % 1000000);
offset = TIMESTAMP_SIZE - 1;
} }
memcpy(buffer + offset, message, msg_len); memcpy(buffer + offset, message, msg_len);


Loading…
Cancel
Save