21#ifndef LSHCORE_UTIL_CONSTANTS_DEBUG_HPP
22#define LSHCORE_UTIL_CONSTANTS_DEBUG_HPP
35 namespace debugConfigs
41#ifndef CONFIG_DEBUG_SERIAL_BAUD
42 static constexpr const uint32_t DEBUG_SERIAL_BAUD = 115200U;
44 static constexpr const uint32_t DEBUG_SERIAL_BAUD = CONFIG_DEBUG_SERIAL_BAUD;
51#include <avr/pgmspace.h>
58 constexpr const char SPACE[] PROGMEM =
" ";
59 constexpr const char COLON_SPACE[] PROGMEM =
": ";
60 constexpr const char POINT[] PROGMEM =
".";
61 constexpr const char DIVIDER[] PROGMEM =
"||";
63 constexpr const char FUNCTION[] PROGMEM =
"Function";
64 constexpr const char METHOD[] PROGMEM =
"Method";
65 constexpr const char CALLED[] PROGMEM =
"called";
66 constexpr const char FREE_MEMORY[] PROGMEM =
"Free memory";
67 constexpr const char COMPILED_BY_GCC[] PROGMEM =
"Compiled by GCC";
68 constexpr const char EXEC_TIME[] PROGMEM =
"Exec time";
69 constexpr const char IS_CONNECTED[] PROGMEM =
"Is connected";
70 constexpr const char CLICKABLE[] PROGMEM =
"Clickable";
71 constexpr const char SHORT[] PROGMEM =
"short";
72 constexpr const char LONG[] PROGMEM =
"long";
73 constexpr const char SUPER_LONG[] PROGMEM =
"super long";
74 constexpr const char CLICKED[] PROGMEM =
"clicked";
75 constexpr const char ESP_EXIT_CODE[] PROGMEM =
"ESP exit code";
76 constexpr const char MESSAGE_RECEIVED_AT_TIME[] PROGMEM =
"Message received at time";
77 constexpr const char ACTUATOR[] PROGMEM =
"Actuator";
78 constexpr const char DOES_NOT_EXIST[] PROGMEM =
"does not exist";
79 constexpr const char JSON_DOC_IS_NULL[] PROGMEM =
"JsonDoc is NULL";
80 constexpr const char JSON_RECEIVED[] PROGMEM =
"JSON received";
81 constexpr const char JSON_SENT[] PROGMEM =
"JSON sent";
82 constexpr const char SENDING_PING_TO_ESP[] PROGMEM =
"Sending ping to ESP";
83 constexpr const char SENDING_BOOT_TO_ESP[] PROGMEM =
"Sending boot to ESP";
84 constexpr const char UUID[] PROGMEM =
"UUID";
85 constexpr const char INDEX[] PROGMEM =
"Index";
86 constexpr const char EXPIRED[] PROGMEM =
"Expired";
87 constexpr const char NET_BUTTONS_NOT_EMPTY[] PROGMEM =
"Network buttons not empty, checking...";
88 constexpr const char CLICK[] PROGMEM =
"Click";
89 constexpr const char TYPE[] PROGMEM =
"type";
90 constexpr const char FOR[] PROGMEM =
"for";
91 constexpr const char ITERATIONS[] PROGMEM =
"iterations";
namespace for constants.
Definition config.hpp:33