language.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /** @file */
  2. //language.h
  3. #ifndef LANGUAGE_H
  4. #define LANGUAGE_H
  5. #include "config.h"
  6. #include "macros.h"
  7. #include <inttypes.h>
  8. #ifdef DEBUG_SEC_LANG
  9. #include <stdio.h>
  10. #endif //DEBUG_SEC_LANG
  11. #define PROTOCOL_VERSION "1.0"
  12. #ifndef CUSTOM_MENDEL_NAME
  13. #define MACHINE_NAME "Mendel"
  14. #endif
  15. #ifndef MACHINE_UUID
  16. #define MACHINE_UUID "00000000-0000-0000-0000-000000000000"
  17. #endif
  18. #if (LANG_MODE == 0) //primary language only
  19. #define PROGMEM_I2 __attribute__((section(".progmem0")))
  20. #define PROGMEM_I1 __attribute__((section(".progmem1")))
  21. #define PROGMEM_N1 __attribute__((section(".progmem2")))
  22. #define _I(s) (__extension__({static const char __c[] PROGMEM_I1 = s; &__c[0];}))
  23. #define ISTR(s) s
  24. #define _i(s) _I(s)
  25. #define _T(s) s
  26. #define _O(s) s
  27. #else //(LANG_MODE == 0)
  28. // section .loc_sec (originaly .progmem0) will be used for localized translated strings
  29. #define PROGMEM_I2 __attribute__((section(".loc_sec")))
  30. // section .loc_pri (originaly .progmem1) will be used for localized strings in english
  31. #define PROGMEM_I1 __attribute__((section(".loc_pri")))
  32. // section .noloc (originaly progmem2) will be used for not localized strings in english
  33. #define PROGMEM_N1 __attribute__((section(".noloc")))
  34. #define _I(s) (__extension__({static const char __c[] PROGMEM_I1 = "\xff\xff" s; &__c[0];}))
  35. #define ISTR(s) "\xff\xff" s
  36. #define _i(s) lang_get_translation(_I(s))
  37. #define _T(s) lang_get_translation(s)
  38. #define _O(s) (s + 2)
  39. #endif //(LANG_MODE == 0)
  40. #define _N(s) (__extension__({static const char __c[] PROGMEM_N1 = s; &__c[0];}))
  41. #define _n(s) _N(s)
  42. /** @brief lang_table_header_t structure - (size= 16byte) */
  43. typedef struct
  44. {
  45. uint32_t magic; //+0
  46. uint16_t size; //+4
  47. uint16_t count; //+6
  48. uint16_t checksum; //+8
  49. uint16_t code; //+10
  50. uint32_t signature; //+12
  51. } lang_table_header_t;
  52. /** @brief lang_table_t structure - (size= 16byte + 2*count) */
  53. typedef struct
  54. {
  55. lang_table_header_t header;
  56. uint16_t table[];
  57. } lang_table_t;
  58. /** @name Language indices into their particular symbol tables.*/
  59. ///@{
  60. #define LANG_ID_PRI 0
  61. #define LANG_ID_SEC 1
  62. ///@}
  63. /** @def LANG_ID_FORCE_SELECTION
  64. * @brief Language is not defined and it shall be selected from the menu.*/
  65. #define LANG_ID_FORCE_SELECTION 254
  66. /** @def LANG_ID_UNDEFINED
  67. * @brief Language is not defined on a virgin RAMBo board. */
  68. #define LANG_ID_UNDEFINED 255
  69. /** @def LANG_ID_DEFAULT
  70. * @brief Default language ID, if no language is selected. */
  71. #define LANG_ID_DEFAULT LANG_ID_PRI
  72. /** @def LANG_MAGIC
  73. * @brief Magic number at begin of lang table. */
  74. #define LANG_MAGIC 0x4bb45aa5
  75. /** @name Language codes (ISO639-1)*/
  76. ///@{
  77. #define LANG_CODE_XX 0x3f3f //!<'??'
  78. #define LANG_CODE_EN 0x656e //!<'en'
  79. #define LANG_CODE_CZ 0x6373 //!<'cs'
  80. #define LANG_CODE_DE 0x6465 //!<'de'
  81. #define LANG_CODE_ES 0x6573 //!<'es'
  82. #define LANG_CODE_FR 0x6672 //!<'fr'
  83. #define LANG_CODE_IT 0x6974 //!<'it'
  84. #define LANG_CODE_PL 0x706c //!<'pl'
  85. #ifdef COMMUNITY_LANGUAGE_SUPPORT //Community language support
  86. #ifdef COMMUNITY_LANG_GROUP1_NL
  87. #define LANG_CODE_NL 0x6e6c //!<'nl'
  88. #endif // COMMUNITY_LANG_GROUP1_NL
  89. #ifdef COMMUNITY_LANG_GROUP1_SV
  90. #define LANG_CODE_SV 0x7376 //!<'sv'
  91. #endif // COMMUNITY_LANG_GROUP1_SV
  92. #ifdef COMMUNITY_LANG_GROUP1_NO
  93. #define LANG_CODE_NO 0x6E6F //!<'no'
  94. #endif // COMMUNITY_LANG_GROUP1_NO
  95. #ifdef COMMUNITY_LANG_GROUP1_DA
  96. #define LANG_CODE_DA 0x6461 //!<'da'
  97. #endif // COMMUNITY_LANG_GROUP1_DA
  98. #ifdef COMMUNITY_LANG_GROUP1_SL
  99. #define LANG_CODE_SL 0x736C //!<'sl'
  100. #endif // COMMUNITY_LANG_GROUP1_SL
  101. #ifdef COMMUNITY_LANG_GROUP1_HU
  102. #define LANG_CODE_HU 0x6875 //!<'hu'
  103. #endif // COMMUNITY_LANG_GROUP1_HU
  104. #ifdef COMMUNITY_LANG_GROUP1_LB
  105. #define LANG_CODE_LB 0x6C62 //!<'lb'
  106. #endif // COMMUNITY_LANG_GROUP1_LB
  107. #ifdef COMMUNITY_LANG_GROUP1_HR
  108. #define LANG_CODE_HR 0x6872 //!<'hr'
  109. #endif // COMMUNITY_LANG_GROUP1_HR
  110. #ifdef COMMUNITY_LANG_GROUP1_LT
  111. #define LANG_CODE_LT 0x6C74 //!<'lt'
  112. #endif // COMMUNITY_LANG_GROUP1_LT
  113. #ifdef COMMUNITY_LANG_GROUP1_SK
  114. #define LANG_CODE_SK 0x736b //!<'sk'
  115. #endif // COMMUNITY_LANG_GROUP1_SK
  116. #ifdef COMMUNITY_LANG_GROUP1_RO
  117. #define LANG_CODE_RO 0x726F //!<'ro'
  118. #endif // COMMUNITY_LANG_GROUP1_RO
  119. //Use the 3 lines below as a template and replace 'QR', '0X7172' and 'qr'
  120. //#ifdef COMMUNITY_LANG_GROUP1_QR
  121. //#define LANG_CODE_QR 0x7172 //!<'qr'
  122. //#endif // COMMUNITY_LANG_GROUP1_QR
  123. #endif // COMMUNITY_LANGUAGE_SUPPORT
  124. ///@}
  125. #if defined(__cplusplus)
  126. extern "C" {
  127. #endif //defined(__cplusplus)
  128. /** @brief Currectly active language selection.*/
  129. extern uint8_t lang_selected;
  130. #if (LANG_MODE != 0)
  131. extern const char _SEC_LANG[LANG_SIZE_RESERVED];
  132. extern const char* lang_get_translation(const char* s);
  133. #define _SEC_LANG_TABLE ((uint16_t)&_SEC_LANG)
  134. #endif //(LANG_MODE != 0)
  135. /** @brief selects language, eeprom is updated in case of success */
  136. extern uint8_t lang_select(uint8_t lang);
  137. /** @brief performs checksum test of secondary language data */
  138. extern uint8_t lang_check(uint16_t addr);
  139. /** @return total number of languages (primary + all in xflash) */
  140. extern uint8_t lang_get_count(void);
  141. /** @brief reads lang table header and offset in xflash or progmem */
  142. extern uint8_t lang_get_header(uint8_t lang, lang_table_header_t* header, uint32_t* offset);
  143. /** @brief reads lang code from xflash or progmem */
  144. extern uint16_t lang_get_code(uint8_t lang);
  145. /** @return localized language name (text for menu item) */
  146. extern const char* lang_get_name_by_code(uint16_t code);
  147. /** @brief reset language to "LANG_ID_FORCE_SELECTION", epprom is updated */
  148. extern void lang_reset(void);
  149. /** @retval 1 language is selected */
  150. extern uint8_t lang_is_selected(void);
  151. #ifdef DEBUG_SEC_LANG
  152. extern const char* lang_get_sec_lang_str_by_id(uint16_t id);
  153. extern uint16_t lang_print_sec_lang(FILE* out);
  154. #endif //DEBUG_SEC_LANG
  155. extern void lang_boot_update_start(uint8_t lang);
  156. #if defined(__cplusplus)
  157. }
  158. #endif //defined(__cplusplus)
  159. #define CAT2(_s1, _s2) _s1
  160. #define CAT4(_s1, _s2, _s3, _s4) _s1
  161. #include "messages.h"
  162. #endif //LANGUAGE_H