Merge pull request #3434 from leptun/MK3_lang_get_original_string

_O() macro
This commit is contained in:
3d-gussner 2022-07-01 16:41:35 +02:00 committed by GitHub
commit e63af1a1e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,6 +29,7 @@
#define ISTR(s) s
#define _i(s) _I(s)
#define _T(s) s
#define _O(s) s
#else //(LANG_MODE == 0)
// section .loc_sec (originaly .progmem0) will be used for localized translated strings
#define PROGMEM_I2 __attribute__((section(".loc_sec")))
@ -40,6 +41,7 @@
#define ISTR(s) "\xff\xff" s
#define _i(s) lang_get_translation(_I(s))
#define _T(s) lang_get_translation(s)
#define _O(s) (s + 2)
#endif //(LANG_MODE == 0)
#define _N(s) (__extension__({static const char __c[] PROGMEM_N1 = s; &__c[0];}))
#define _n(s) _N(s)