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