🎨 Update F string declarations
This commit is contained in:
parent
1de265ea5d
commit
433a27e475
@ -87,3 +87,10 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "progmem.h"
|
#include "progmem.h"
|
||||||
|
|
||||||
|
class __FlashStringHelper;
|
||||||
|
typedef const __FlashStringHelper* FSTR_P;
|
||||||
|
#ifndef FPSTR
|
||||||
|
#define FPSTR(S) (reinterpret_cast<FSTR_P>(S))
|
||||||
|
#endif
|
||||||
|
#define FTOP(S) (reinterpret_cast<const char*>(S))
|
||||||
|
@ -38,7 +38,8 @@
|
|||||||
#define PSTR(str) (str)
|
#define PSTR(str) (str)
|
||||||
#endif
|
#endif
|
||||||
#ifndef F
|
#ifndef F
|
||||||
#define F(str) (str)
|
class __FlashStringHelper;
|
||||||
|
#define F(str) (reinterpret_cast<const __FlashStringHelper *>(PSTR(str)))
|
||||||
#endif
|
#endif
|
||||||
#ifndef _SFR_BYTE
|
#ifndef _SFR_BYTE
|
||||||
#define _SFR_BYTE(n) (n)
|
#define _SFR_BYTE(n) (n)
|
||||||
|
@ -26,13 +26,6 @@
|
|||||||
|
|
||||||
#include "../inc/MarlinConfigPre.h"
|
#include "../inc/MarlinConfigPre.h"
|
||||||
|
|
||||||
class __FlashStringHelper;
|
|
||||||
typedef const __FlashStringHelper* FSTR_P;
|
|
||||||
#ifndef FPSTR
|
|
||||||
#define FPSTR(S) (reinterpret_cast<FSTR_P>(S))
|
|
||||||
#endif
|
|
||||||
#define FTOP(S) (reinterpret_cast<const char*>(S))
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Conditional type assignment magic. For example...
|
// Conditional type assignment magic. For example...
|
||||||
//
|
//
|
||||||
|
Loading…
Reference in New Issue
Block a user