My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

language_test.h 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * TEST
  24. *
  25. * LCD Menu Messages
  26. * See also http://marlinfw.org/docs/development/lcd_language.html
  27. *
  28. */
  29. #ifndef LANGUAGE_TEST_H
  30. #define LANGUAGE_TEST_H
  31. // Select ONE of the following Mappers.
  32. // They decide what to do with a symbol in the area of [0x80:0xFF]. They take a symbol of this language file and make them point
  33. // into an array with 128 cells, where they'll find the place of the symbol of the font in use.
  34. //
  35. // a.)For ASCII coded Language_xx.h files like (en) there are no occurrences of symbols above 0x7F so no mapper is needed.
  36. // If such a symbol appears it is mapped directly into the font. This is the case for the language files we used until now, with all the STR_XX or
  37. // "\xxx" symbols. All Symbols are only one byte long.
  38. // b.) For Unicoded Language_xx.h files (currently ru, de and kana_utf8 ) the non ASCII [0x00-0x7F] symbols are represented by more than one byte.
  39. // In the case of two bytes the first is pointing to a 'codepage' and the second to a place in the codepage. These codepages contain 64 symbols.
  40. // So two of them can be mapped. For most of the European languages the necessary symbols are contained in the pages C2 and C3. Cyrillic uses D0
  41. // and D1.
  42. // c.) For katakana (one of the Japanese symbol sets) Unicode uses 3 bytes. Here the second byte also points to a codepage and byte 3 to the symbol.
  43. // I hope the pages E282 and E283 are sufficient to write katakana.
  44. // Kanji (an other Japanese symbol set) uses far more than two codepages. So currently I don't see a chance to map the Unicodes. Its not
  45. // impossible to have a close to direct mapping but will need giant conversion tables and fonts (we don't want to have in a embedded system).
  46. //#define MAPPER_C2C3 // For most European languages when language file is in utf8
  47. //#define MAPPER_D0D1 // For Cyrillic
  48. //#define MAPPER_E382E383 // For Katakana
  49. //#define MAPPER_NON // For direct ascii codes. Fall back mapper - if no other is defined.
  50. // Select the better font for full graphic displays.
  51. //#define DISPLAY_CHARSET_ISO10646_1
  52. //#define DISPLAY_CHARSET_ISO10646_5
  53. //#define DISPLAY_CHARSET_ISO10646_GREEK
  54. //#define DISPLAY_CHARSET_ISO10646_KANA
  55. // next 5 lines select variants in this file only
  56. #define DISPLAYTEST
  57. //#define WEST
  58. //#define CYRIL
  59. //#define KANA
  60. // TESTSTRINGS
  61. #define STRG_ASCII_2 " !\"#$%&'()*+,-./"
  62. #define STRG_ASCII_3 "0123456789:;<=>?"
  63. #define STRG_ASCII_4 "@ABCDEFGHIJKLMNO"
  64. #define STRG_ASCII_5 "PQRSTUVWXYZ[\]^_"
  65. #define STRG_ASCII_6 "`abcdefghijklmno"
  66. #define STRG_ASCII_7 "pqrstuvwxyz{|}~"
  67. #define STRG_C2_8 ""
  68. #define STRG_C2_9 ""
  69. #define STRG_C2_a " ¡¢£¤¥¦§¨©ª«¬­®¯"
  70. #define STRG_C2_b "°±²³´µ¶·¸¹º»¼½¾¿"
  71. #define STRG_C3_8 "ÈÁÂÃÄÅÆÇÈÉÊËÌÍÎÏ"
  72. #define STRG_C3_9 "ÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞß"
  73. #define STRG_C3_a "àáâãäåæçèéêëìíîï"
  74. #define STRG_C3_b "ðñòóôõö÷øùúûüýþÿ"
  75. #define STRG_D0_8 "ЀЁЂЃЄЅІЇЈЉЊЋЌЍЎЏ"
  76. #define STRG_D0_9 "АБВГДЕЖЗИЙКЛМНОП"
  77. #define STRG_D0_a "РСТУФХЦЧШЩЪЫЬЭЮЯ"
  78. #define STRG_D0_b "абвгдежзийклмноп"
  79. #define STRG_D1_8 "рстуфхцчшщъыьэюя"
  80. #define STRG_D1_9 "ѐёђѓєѕіїјљњћќѝўџ"
  81. #define STRG_D1_a "ѠѡѢѣѤѥѦѧѨѩѪѫѬѭѮѯ"
  82. #define STRG_D1_b "ѰѱѲѳѴѵѶѷѸѹѺѻѼѽѾѿ"
  83. #define STRG_E382_8 "よめもゃやゅゆょよらりるれろゎわ"
  84. #define STRG_E382_9 "ゐゑをんゔゕゖ゗゘゙゚゛ ゜ゝゞゟ"
  85. #define STRG_E382_a "゠ァアィイゥウェエォオカガキギク"
  86. #define STRG_E382_b "グケゲコゴサザシジスズセゼソゾタ"
  87. #define STRG_E383_8 "トチヂッツヅテデトドナニヌネノハ"
  88. #define STRG_E383_9 "バパヒビピフブプヘベペホボポマミ"
  89. #define STRG_E383_a "ムメモャヤュユョヨラリルレロヮワ"
  90. #define STRG_E383_b "ヰヱヲンヴヵヶヷヸヹヺ・ーヽヾヿ"
  91. #define STRG_OKTAL_0 "\000\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017"
  92. #define STRG_OKTAL_1 "\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037"
  93. #define STRG_OKTAL_2 "\040\041\042\043\044\045\046\047\050\051\052\053\054\055\056\057"
  94. #define STRG_OKTAL_3 "\060\061\062\063\064\065\066\067\070\071\072\073\074\075\076\077"
  95. #define STRG_OKTAL_4 "\100\101\102\103\104\105\106\107\110\111\112\113\114\115\116\117"
  96. #define STRG_OKTAL_5 "\120\121\122\123\124\125\126\127\130\131\132\133\134\135\136\137"
  97. #define STRG_OKTAL_6 "\140\141\142\143\144\145\146\147\150\151\152\153\154\155\156\157"
  98. #define STRG_OKTAL_7 "\160\161\162\163\164\165\166\167\170\171\172\173\174\175\176\177"
  99. #define STRG_OKTAL_8 "\200\201\202\203\204\205\206\207\210\211\212\213\214\215\216\217"
  100. #define STRG_OKTAL_9 "\220\221\222\223\224\225\226\227\230\231\232\233\234\235\236\237"
  101. #define STRG_OKTAL_a "\240\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257"
  102. #define STRG_OKTAL_b "\260\261\262\263\264\265\266\267\270\271\272\273\274\275\276\277"
  103. #define STRG_OKTAL_c "\300\301\302\303\304\305\306\307\310\311\312\313\314\315\316\317"
  104. #define STRG_OKTAL_d "\320\321\322\323\324\325\326\327\330\331\332\333\334\335\336\337"
  105. #define STRG_OKTAL_e "\340\341\342\343\344\345\346\347\350\351\352\353\354\355\356\357"
  106. #define STRG_OKTAL_f "\360\361\362\363\364\365\366\367\370\371\372\373\374\375\376\377"
  107. #if ENABLED(DISPLAYTEST)
  108. #define WELCOME_MSG "Language TEST"
  109. #define MSG_WATCH "Display test"
  110. #define MSG_PREPARE STRG_OKTAL_b
  111. #define MSG_CONTROL STRG_OKTAL_c
  112. #endif
  113. #if ENABLED(WEST)
  114. #define WELCOME_MSG "Language TEST"
  115. #define MSG_WATCH "\001\002\003\004\005\006\007\010\011"
  116. #define MSG_PREPARE "UTF8"
  117. #define MSG_CONTROL "ASCII"
  118. //#define MSG_MAIN ".."
  119. #define MSG_DISABLE_STEPPERS STRG_C2_8
  120. #define MSG_AUTO_HOME STRG_C2_9
  121. #define MSG_SET_HOME_OFFSETS STRG_C2_a
  122. #define MSG_PREHEAT_1 STRG_C2_b
  123. #define MSG_PREHEAT_2 STRG_C3_8
  124. #define MSG_COOLDOWN STRG_C3_9
  125. #define MSG_SWITCH_PS_OFF STRG_C3_a
  126. #define MSG_MOVE_AXIS STRG_C3_b
  127. #define MSG_MAIN STRG_OKTAL_2
  128. #define MSG_TEMPERATURE STRG_OKTAL_3
  129. #define MSG_MOTION STRG_OKTAL_4
  130. #define MSG_FILAMENT STRG_OKTAL_5
  131. #define MSG_CONTRAST STRG_OKTAL_6
  132. #define MSG_RESTORE_FAILSAFE STRG_OKTAL_7
  133. #define MSG_NOZZLE STRG_OKTAL_8
  134. #define MSG_FAN_SPEED STRG_OKTAL_9
  135. #define MSG_AUTOTEMP STRG_OKTAL_a
  136. #define MSG_MIN STRG_OKTAL_b
  137. #define MSG_MAX STRG_OKTAL_c
  138. #define MSG_FACTOR STRG_OKTAL_d
  139. #define MSG_PID_P STRG_OKTAL_e
  140. #define MSG_PID_I STRG_OKTAL_f
  141. #endif
  142. #if ENABLED(CYRIL)
  143. #define WELCOME_MSG "Language TEST"
  144. #define MSG_WATCH "\001\002\003\004\005\006\007\010\011"
  145. #define MSG_PREPARE "UTF8"
  146. #define MSG_CONTROL "ASCII"
  147. //#define MSG_MAIN ".."
  148. #define MSG_DISABLE_STEPPERS STRG_D0_8
  149. #define MSG_AUTO_HOME STRG_D0_9
  150. #define MSG_SET_HOME_OFFSETS STRG_D0_a
  151. #define MSG_PREHEAT_1 STRG_D0_b
  152. #define MSG_PREHEAT_2 STRG_D1_8
  153. #define MSG_COOLDOWN STRG_D1_9
  154. #define MSG_SWITCH_PS_OFF STRG_D1_a
  155. #define MSG_MOVE_AXIS STRG_D1_b
  156. #define MSG_MAIN STRG_OKTAL_2
  157. #define MSG_TEMPERATURE STRG_OKTAL_3
  158. #define MSG_MOTION STRG_OKTAL_4
  159. #define MSG_FILAMENT STRG_OKTAL_5
  160. #define MSG_CONTRAST STRG_OKTAL_6
  161. #define MSG_RESTORE_FAILSAFE STRG_OKTAL_7
  162. #define MSG_NOZZLE STRG_OKTAL_8
  163. #define MSG_FAN_SPEED STRG_OKTAL_9
  164. #define MSG_AUTOTEMP STRG_OKTAL_a
  165. #define MSG_MIN STRG_OKTAL_b
  166. #define MSG_MAX STRG_OKTAL_c
  167. #define MSG_FACTOR STRG_OKTAL_d
  168. #define MSG_PID_P STRG_OKTAL_e
  169. #define MSG_PID_I STRG_OKTAL_f
  170. #endif
  171. #if ENABLED(KANA)
  172. #define WELCOME_MSG "Language TEST"
  173. #define MSG_WATCH "\001\002\003\004\005\006\007\010\011"
  174. #define MSG_PREPARE "UTF8"
  175. #define MSG_CONTROL "ASCII"
  176. //#define MSG_MAIN ".."
  177. #define MSG_DISABLE_STEPPERS STRG_E382_8
  178. #define MSG_AUTO_HOME STRG_E382_9
  179. #define MSG_SET_HOME_OFFSETS STRG_E382_a
  180. #define MSG_PREHEAT_1 STRG_E382_b
  181. #define MSG_PREHEAT_2 STRG_E383_8
  182. #define MSG_COOLDOWN STRG_E383_9
  183. #define MSG_SWITCH_PS_OFF STRG_E383_a
  184. #define MSG_MOVE_AXIS STRG_E383_b
  185. #define MSG_MAIN STRG_OKTAL_2
  186. #define MSG_TEMPERATURE STRG_OKTAL_3
  187. #define MSG_MOTION STRG_OKTAL_4
  188. #define MSG_FILAMENT STRG_OKTAL_5
  189. #define MSG_CONTRAST STRG_OKTAL_6
  190. #define MSG_RESTORE_FAILSAFE STRG_OKTAL_7
  191. #define MSG_NOZZLE STRG_OKTAL_8
  192. #define MSG_FAN_SPEED STRG_OKTAL_9
  193. #define MSG_AUTOTEMP STRG_OKTAL_a
  194. #define MSG_MIN STRG_OKTAL_b
  195. #define MSG_MAX STRG_OKTAL_c
  196. #define MSG_FACTOR STRG_OKTAL_d
  197. #define MSG_PID_P STRG_OKTAL_e
  198. #define MSG_PID_I STRG_OKTAL_f
  199. #endif
  200. #endif // LANGUAGE_TEST_H