2019-07-27 13:34:07 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <avr/pgmspace.h>
|
|
|
|
|
2019-07-28 17:30:52 +02:00
|
|
|
#define F(str) (reinterpret_cast<const ::detail::FlashString *>(PSTR(str)))
|
2020-04-01 03:52:49 +02:00
|
|
|
#define GF(name, str) \
|
|
|
|
const char __##name[] PROGMEM = str; \
|
|
|
|
const auto *name = reinterpret_cast<const ::detail::FlashString *>(__##name)
|
2019-07-27 13:34:07 +02:00
|
|
|
|
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
// Only used for C++ type safety, because otherwise a PSTR would be indistinguishable from a normal c-string
|
|
|
|
struct FlashString;
|
|
|
|
|
|
|
|
} // namespace detail
|