mirror of
https://github.com/esphome/esphome.git
synced 2026-02-18 15:35:59 -07:00
23 lines
695 B
C
23 lines
695 B
C
#pragma once
|
|
|
|
// Platform-agnostic macros for PROGMEM string handling
|
|
// On ESP8266/Arduino: Use Arduino's F() macro for PROGMEM strings
|
|
// On other platforms: Use plain strings (no PROGMEM)
|
|
|
|
#ifdef USE_ESP8266
|
|
// ESP8266 uses Arduino macros
|
|
#define ESPHOME_F(string_literal) F(string_literal)
|
|
#define ESPHOME_PGM_P PGM_P
|
|
#define ESPHOME_PSTR(s) PSTR(s)
|
|
#define ESPHOME_strncpy_P strncpy_P
|
|
#define ESPHOME_strncat_P strncat_P
|
|
#define ESPHOME_snprintf_P snprintf_P
|
|
#else
|
|
#define ESPHOME_F(string_literal) (string_literal)
|
|
#define ESPHOME_PGM_P const char *
|
|
#define ESPHOME_PSTR(s) (s)
|
|
#define ESPHOME_strncpy_P strncpy
|
|
#define ESPHOME_strncat_P strncat
|
|
#define ESPHOME_snprintf_P snprintf
|
|
#endif
|