errors_list.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. // Extracted from Prusa-Error-Codes repo
  2. // Subject to automation and optimization
  3. // BEWARE - this file shall be included only into mmu2_error_converter.cpp, not anywhere else!
  4. #pragma once
  5. #include "inttypes.h"
  6. #include "../language.h"
  7. #include <avr/pgmspace.h>
  8. #include "buttons.h"
  9. namespace MMU2 {
  10. static constexpr uint8_t ERR_MMU_CODE = 4;
  11. typedef enum : uint16_t {
  12. ERR_UNDEF = 0,
  13. ERR_MECHANICAL = 100,
  14. ERR_MECHANICAL_FINDA_DIDNT_TRIGGER = 101,
  15. ERR_MECHANICAL_FINDA_DIDNT_GO_OFF = 102,
  16. ERR_MECHANICAL_FSENSOR_DIDNT_TRIGGER = 103,
  17. ERR_MECHANICAL_FSENSOR_DIDNT_GO_OFF = 104,
  18. ERR_MECHANICAL_PULLEY_CANNOT_MOVE = 105,
  19. ERR_MECHANICAL_FSENSOR_TOO_EARLY = 106,
  20. ERR_MECHANICAL_SELECTOR_CANNOT_HOME = 115,
  21. ERR_MECHANICAL_SELECTOR_CANNOT_MOVE = 116,
  22. ERR_MECHANICAL_IDLER_CANNOT_HOME = 125,
  23. ERR_MECHANICAL_IDLER_CANNOT_MOVE = 126,
  24. ERR_TEMPERATURE = 200,
  25. ERR_TEMPERATURE_PULLEY_WARNING_TMC_TOO_HOT = 201,
  26. ERR_TEMPERATURE_SELECTOR_WARNING_TMC_TOO_HOT = 211,
  27. ERR_TEMPERATURE_IDLER_WARNING_TMC_TOO_HOT = 221,
  28. ERR_TEMPERATURE_PULLEY_TMC_OVERHEAT_ERROR = 202,
  29. ERR_TEMPERATURE_SELECTOR_TMC_OVERHEAT_ERROR = 212,
  30. ERR_TEMPERATURE_IDLER_TMC_OVERHEAT_ERROR = 222,
  31. ERR_ELECTRICAL = 300,
  32. ERR_ELECTRICAL_PULLEY_TMC_DRIVER_ERROR = 301,
  33. ERR_ELECTRICAL_SELECTOR_TMC_DRIVER_ERROR = 311,
  34. ERR_ELECTRICAL_IDLER_TMC_DRIVER_ERROR = 321,
  35. ERR_ELECTRICAL_PULLEY_TMC_DRIVER_RESET = 302,
  36. ERR_ELECTRICAL_SELECTOR_TMC_DRIVER_RESET = 312,
  37. ERR_ELECTRICAL_IDLER_TMC_DRIVER_RESET = 322,
  38. ERR_ELECTRICAL_PULLEY_TMC_UNDERVOLTAGE_ERROR = 303,
  39. ERR_ELECTRICAL_SELECTOR_TMC_UNDERVOLTAGE_ERROR = 313,
  40. ERR_ELECTRICAL_IDLER_TMC_UNDERVOLTAGE_ERROR = 323,
  41. ERR_ELECTRICAL_PULLEY_TMC_DRIVER_SHORTED = 304,
  42. ERR_ELECTRICAL_SELECTOR_TMC_DRIVER_SHORTED = 314,
  43. ERR_ELECTRICAL_IDLER_TMC_DRIVER_SHORTED = 324,
  44. ERR_CONNECT = 400,
  45. ERR_CONNECT_MMU_NOT_RESPONDING = 401,
  46. ERR_CONNECT_COMMUNICATION_ERROR = 402,
  47. ERR_SYSTEM = 500,
  48. ERR_SYSTEM_FILAMENT_ALREADY_LOADED = 501,
  49. ERR_SYSTEM_INVALID_TOOL = 502,
  50. ERR_SYSTEM_QUEUE_FULL = 503,
  51. ERR_SYSTEM_FW_UPDATE_NEEDED = 504,
  52. ERR_SYSTEM_FW_RUNTIME_ERROR = 505,
  53. ERR_SYSTEM_UNLOAD_MANUALLY = 506,
  54. ERR_OTHER = 900
  55. } err_num_t;
  56. // Avr gcc has serious trouble understanding static data structures in PROGMEM
  57. // and inadvertedly falls back to copying the whole structure into RAM (which is obviously unwanted).
  58. // But since this file ought to be generated in the future from yaml prescription,
  59. // it really makes no difference if there are "nice" data structures or plain arrays.
  60. static const constexpr uint16_t errorCodes[] PROGMEM = {
  61. ERR_MECHANICAL_FINDA_DIDNT_TRIGGER,
  62. ERR_MECHANICAL_FINDA_DIDNT_GO_OFF,
  63. ERR_MECHANICAL_FSENSOR_DIDNT_TRIGGER,
  64. ERR_MECHANICAL_FSENSOR_DIDNT_GO_OFF,
  65. ERR_MECHANICAL_PULLEY_CANNOT_MOVE,
  66. ERR_MECHANICAL_FSENSOR_TOO_EARLY,
  67. ERR_MECHANICAL_SELECTOR_CANNOT_HOME,
  68. ERR_MECHANICAL_SELECTOR_CANNOT_MOVE,
  69. ERR_MECHANICAL_IDLER_CANNOT_HOME,
  70. ERR_MECHANICAL_IDLER_CANNOT_MOVE,
  71. ERR_TEMPERATURE_PULLEY_WARNING_TMC_TOO_HOT,
  72. ERR_TEMPERATURE_SELECTOR_WARNING_TMC_TOO_HOT,
  73. ERR_TEMPERATURE_IDLER_WARNING_TMC_TOO_HOT,
  74. ERR_TEMPERATURE_PULLEY_TMC_OVERHEAT_ERROR,
  75. ERR_TEMPERATURE_SELECTOR_TMC_OVERHEAT_ERROR,
  76. ERR_TEMPERATURE_IDLER_TMC_OVERHEAT_ERROR,
  77. ERR_ELECTRICAL_PULLEY_TMC_DRIVER_ERROR,
  78. ERR_ELECTRICAL_SELECTOR_TMC_DRIVER_ERROR,
  79. ERR_ELECTRICAL_IDLER_TMC_DRIVER_ERROR,
  80. ERR_ELECTRICAL_PULLEY_TMC_DRIVER_RESET,
  81. ERR_ELECTRICAL_SELECTOR_TMC_DRIVER_RESET,
  82. ERR_ELECTRICAL_IDLER_TMC_DRIVER_RESET,
  83. ERR_ELECTRICAL_PULLEY_TMC_UNDERVOLTAGE_ERROR,
  84. ERR_ELECTRICAL_SELECTOR_TMC_UNDERVOLTAGE_ERROR,
  85. ERR_ELECTRICAL_IDLER_TMC_UNDERVOLTAGE_ERROR,
  86. ERR_ELECTRICAL_PULLEY_TMC_DRIVER_SHORTED,
  87. ERR_ELECTRICAL_SELECTOR_TMC_DRIVER_SHORTED,
  88. ERR_ELECTRICAL_IDLER_TMC_DRIVER_SHORTED,
  89. ERR_CONNECT_MMU_NOT_RESPONDING,
  90. ERR_CONNECT_COMMUNICATION_ERROR,
  91. ERR_SYSTEM_FILAMENT_ALREADY_LOADED,
  92. ERR_SYSTEM_INVALID_TOOL,
  93. ERR_SYSTEM_QUEUE_FULL,
  94. ERR_SYSTEM_FW_UPDATE_NEEDED,
  95. ERR_SYSTEM_FW_RUNTIME_ERROR,
  96. ERR_SYSTEM_UNLOAD_MANUALLY
  97. };
  98. // @@TODO some of the strings are duplicates, can be merged into one
  99. static const char titleFINDA_DIDNT_TRIGGER[] PROGMEM_I1 = ISTR("FINDA DIDNT TRIGGER");
  100. static const char titleFINDA_DIDNT_GO_OFF[] PROGMEM_I1 = ISTR("FINDA DIDNT GO OFF");
  101. static const char titleFSENSOR_DIDNT_TRIGGER[] PROGMEM_I1 = ISTR("FSENSOR DIDNT TRIGGER");
  102. static const char titleFSENSOR_DIDNT_GO_OFF[] PROGMEM_I1 = ISTR("FSENSOR DIDNT GO OFF");
  103. static const char titlePULLEY_CANNOT_MOVE[] PROGMEM_I1 = ISTR("PULLEY CANNOT MOVE");
  104. static const char titleFSENSOR_TOO_EARLY[] PROGMEM_I1 = ISTR("FSENSOR TOO EARLY");
  105. static const char titleSELECTOR_CANNOT_MOVE[] PROGMEM_I1 = ISTR("SELECTOR CANNOT MOVE");
  106. static const char titleSELECTOR_CANNOT_HOME[] PROGMEM_I1 = ISTR("SELECTOR CANNOT HOME");
  107. static const char titleIDLER_CANNOT_MOVE[] PROGMEM_I1 = ISTR("IDLER CANNOT MOVE");
  108. static const char titleIDLER_CANNOT_HOME[] PROGMEM_I1 = ISTR("IDLER CANNOT HOME");
  109. static const char titlePULLEY_TMC_WARNING_TMC_TOO_HOT[] PROGMEM_I1 = ISTR("WARNING TMC TOO HOT");
  110. static const char titleSELECTOR_TMC_WARNING_TMC_TOO_HOT[] PROGMEM_I1 = ISTR("WARNING TMC TOO HOT");
  111. static const char titleIDLER_TMC_WARNING_TMC_TOO_HOT[] PROGMEM_I1 = ISTR("WARNING TMC TOO HOT");
  112. static const char titlePULLEY_TMC_OVERHEAT_ERROR[] PROGMEM_I1 = ISTR("TMC OVERHEAT ERROR");
  113. static const char titleSELECTOR_TMC_OVERHEAT_ERROR[] PROGMEM_I1 = ISTR("TMC OVERHEAT ERROR");
  114. static const char titleIDLER_TMC_OVERHEAT_ERROR[] PROGMEM_I1 = ISTR("TMC OVERHEAT ERROR");
  115. static const char titlePULLEY_TMC_DRIVER_ERROR[] PROGMEM_I1 = ISTR("TMC DRIVER ERROR");
  116. static const char titleSELECTOR_TMC_DRIVER_ERROR[] PROGMEM_I1 = ISTR("TMC DRIVER ERROR");
  117. static const char titleIDLER_TMC_DRIVER_ERROR[] PROGMEM_I1 = ISTR("TMC DRIVER ERROR");
  118. static const char titlePULLEY_TMC_DRIVER_RESET[] PROGMEM_I1 = ISTR("TMC DRIVER RESET");
  119. static const char titleSELECTOR_TMC_DRIVER_RESET[] PROGMEM_I1 = ISTR("TMC DRIVER RESET");
  120. static const char titleIDLER_TMC_DRIVER_RESET[] PROGMEM_I1 = ISTR("TMC DRIVER RESET");
  121. static const char titlePULLEY_TMC_UNDERVOLTAGE_ERROR[] PROGMEM_I1 = ISTR("TMC UNDERVOLTAGE ERR");
  122. static const char titleSELECTOR_TMC_UNDERVOLTAGE_ERROR[] PROGMEM_I1 = ISTR("TMC UNDERVOLTAGE ERR");
  123. static const char titleIDLER_TMC_UNDERVOLTAGE_ERROR[] PROGMEM_I1 = ISTR("TMC UNDERVOLTAGE ERR");
  124. static const char titlePULLEY_TMC_DRIVER_SHORTED[] PROGMEM_I1 = ISTR("TMC DRIVER SHORTED");
  125. static const char titleSELECTOR_TMC_DRIVER_SHORTED[] PROGMEM_I1 = ISTR("TMC DRIVER SHORTED");
  126. static const char titleIDLER_TMC_DRIVER_SHORTED[] PROGMEM_I1 = ISTR("TMC DRIVER SHORTED");
  127. static const char titleMMU_NOT_RESPONDING[] PROGMEM_I1 = ISTR("MMU NOT RESPONDING");
  128. static const char titleCOMMUNICATION_ERROR[] PROGMEM_I1 = ISTR("COMMUNICATION ERROR");
  129. static const char titleFILAMENT_ALREADY_LOADED[] PROGMEM_I1 = ISTR("FILAMENT ALREADY LOA");
  130. static const char titleINVALID_TOOL[] PROGMEM_I1 = ISTR("INVALID TOOL");
  131. static const char titleQUEUE_FULL[] PROGMEM_I1 = ISTR("QUEUE FULL");
  132. static const char titleFW_UPDATE_NEEDED[] PROGMEM_I1 = ISTR("MMU FW UPDATE NEEDED");
  133. static const char titleFW_RUNTIME_ERROR[] PROGMEM_I1 = ISTR("FW RUNTIME ERROR");
  134. static const char titleUNLOAD_MANUALLY[] PROGMEM_I1 = ISTR("UNLOAD MANUALLY");
  135. static const char * const errorTitles [] PROGMEM = {
  136. titleFINDA_DIDNT_TRIGGER,
  137. titleFINDA_DIDNT_GO_OFF,
  138. titleFSENSOR_DIDNT_TRIGGER,
  139. titleFSENSOR_DIDNT_GO_OFF,
  140. titlePULLEY_CANNOT_MOVE,
  141. titleFSENSOR_TOO_EARLY,
  142. titleSELECTOR_CANNOT_HOME,
  143. titleSELECTOR_CANNOT_MOVE,
  144. titleIDLER_CANNOT_HOME,
  145. titleIDLER_CANNOT_MOVE,
  146. titlePULLEY_TMC_WARNING_TMC_TOO_HOT,
  147. titleSELECTOR_TMC_WARNING_TMC_TOO_HOT,
  148. titleIDLER_TMC_WARNING_TMC_TOO_HOT,
  149. titlePULLEY_TMC_OVERHEAT_ERROR,
  150. titleSELECTOR_TMC_OVERHEAT_ERROR,
  151. titleIDLER_TMC_OVERHEAT_ERROR,
  152. titlePULLEY_TMC_DRIVER_ERROR,
  153. titleSELECTOR_TMC_DRIVER_ERROR,
  154. titleIDLER_TMC_DRIVER_ERROR,
  155. titlePULLEY_TMC_DRIVER_RESET,
  156. titleSELECTOR_TMC_DRIVER_RESET,
  157. titleIDLER_TMC_DRIVER_RESET,
  158. titlePULLEY_TMC_UNDERVOLTAGE_ERROR,
  159. titleSELECTOR_TMC_UNDERVOLTAGE_ERROR,
  160. titleIDLER_TMC_UNDERVOLTAGE_ERROR,
  161. titlePULLEY_TMC_DRIVER_SHORTED,
  162. titleSELECTOR_TMC_DRIVER_SHORTED,
  163. titleIDLER_TMC_DRIVER_SHORTED,
  164. titleMMU_NOT_RESPONDING,
  165. titleCOMMUNICATION_ERROR,
  166. titleFILAMENT_ALREADY_LOADED,
  167. titleINVALID_TOOL,
  168. titleQUEUE_FULL,
  169. titleFW_UPDATE_NEEDED,
  170. titleFW_RUNTIME_ERROR,
  171. titleUNLOAD_MANUALLY
  172. };
  173. // @@TODO looking at the texts, they can be composed of several parts and/or parametrized (could save a lot of space ;) )
  174. static const char descFINDA_DIDNT_TRIGGER[] PROGMEM_I1 = ISTR("FINDA didn't trigger while loading filament. Ensure filament can move and FINDA works.");
  175. static const char descFINDA_DIDNT_GO_OFF[] PROGMEM_I1 = ISTR("FINDA didn't switch off while unloading filament. Try unloading manually. Ensure filament can move and FINDA works.");
  176. static const char descFSENSOR_DIDNT_TRIGGER[] PROGMEM_I1 = ISTR("Filament sensor didn't trigger while loading filament. Ensure filament reached the fsensor and the sensor works.");
  177. static const char descFSENSOR_DIDNT_GO_OFF[] PROGMEM_I1 = ISTR("Filament sensor didn't switch off while unloading filament. Ensure filament can move and the sensor works.");
  178. static const char descPULLEY_STALLED[] PROGMEM_I1 = ISTR("The Pulley motor stalled - Ensure the pulley can move and check the wiring.");
  179. static const char descFSENSOR_TOO_EARLY[] PROGMEM_I1 = ISTR("Filament sensor triggered too early while loading to extruder. Check there isn't anything stuck in PTFE tube. Check that sensor reads properly.");
  180. static const char descSELECTOR_CANNOT_HOME[] PROGMEM_I1 = ISTR("The Selector cannot home properly - check for anything blocking its movement.");
  181. static const char descSELECTOR_CANNOT_MOVE[] PROGMEM_I1 = ISTR("The Selector cannot move - check for anything blocking its movement. Check the wiring is correct.");
  182. static const char descIDLER_CANNOT_MOVE[] PROGMEM_I1 = ISTR("The Idler cannot home properly - check for anything blocking its movement.");
  183. static const char descIDLER_CANNOT_HOME[] PROGMEM_I1 = ISTR("The Idler cannot move properly - check for anything blocking its movement. Check the wiring is correct.");
  184. static const char descPULLEY_WARNING_TMC_TOO_HOT[] PROGMEM_I1 = ISTR("TMC driver for the Pulley motor is almost overheating. Make sure there is sufficient airflow near the MMU board.");
  185. static const char descSELECTOR_WARNING_TMC_TOO_HOT[] PROGMEM_I1 = ISTR("TMC driver for the Selector motor is almost overheating. Make sure there is sufficient airflow near the MMU board.");
  186. static const char descIDLER_WARNING_TMC_TOO_HOT[] PROGMEM_I1 = ISTR("TMC driver for the Idler motor is almost overheating. Make sure there is sufficient airflow near the MMU board.");
  187. static const char descPULLEY_TMC_OVERHEAT_ERROR[] PROGMEM_I1 = ISTR("TMC driver for the Pulley motor is overheated. Cool down the MMU board and reset MMU.");
  188. static const char descSELECTOR_TMC_OVERHEAT_ERROR[] PROGMEM_I1 = ISTR("TMC driver for the Selector motor is overheated. Cool down the MMU board and reset MMU.");
  189. static const char descIDLER_TMC_OVERHEAT_ERROR[] PROGMEM_I1 = ISTR("TMC driver for the Idler motor is overheated. Cool down the MMU board and reset MMU.");
  190. static const char descPULLEY_TMC_DRIVER_ERROR[] PROGMEM_I1 = ISTR("TMC driver for the Pulley motor is not responding. Try resetting the MMU. If the issue persists contact support.");
  191. static const char descSELECTOR_TMC_DRIVER_ERROR[] PROGMEM_I1 = ISTR("TMC driver for the Selector motor is not responding. Try resetting the MMU. If the issue persists contact support.");
  192. static const char descIDLER_TMC_DRIVER_ERROR[] PROGMEM_I1 = ISTR("TMC driver for the Idler motor is not responding. Try resetting the MMU. If the issue persists contact support.");
  193. static const char descPULLEY_TMC_DRIVER_RESET[] PROGMEM_I1 = ISTR("TMC driver for the Pulley motor was restarted. There is probably an issue with the electronics. Check the wiring and connectors.");
  194. static const char descSELECTOR_TMC_DRIVER_RESET[] PROGMEM_I1 = ISTR("TMC driver for the Selector motor was restarted. There is probably an issue with the electronics. Check the wiring and connectors.");
  195. static const char descIDLER_TMC_DRIVER_RESET[] PROGMEM_I1 = ISTR("TMC driver for the Idler motor was restarted. There is probably an issue with the electronics. Check the wiring and connectors.");
  196. static const char descPULLEY_TMC_UNDERVOLTAGE_ERROR[] PROGMEM_I1 = ISTR("Not enough current for the Pulley TMC driver. There is probably an issue with the electronics. Check the wiring and connectors.");
  197. static const char descSELECTOR_TMC_UNDERVOLTAGE_ERROR[] PROGMEM_I1 = ISTR("Not enough current for the Selector TMC driver. There is probably an issue with the electronics. Check the wiring and connectors.");
  198. static const char descIDLER_TMC_UNDERVOLTAGE_ERROR[] PROGMEM_I1 = ISTR("Not enough current for the Idler TMC driver. There is probably an issue with the electronics. Check the wiring and connectors.");
  199. static const char descPULLEY_TMC_DRIVER_SHORTED[] PROGMEM_I1 = ISTR("Short circuit on the Pulley TMC driver. Check the wiring and connectors. If the issue persists contact support.");
  200. static const char descSELECTOR_TMC_DRIVER_SHORTED[] PROGMEM_I1 = ISTR("Short circuit on the Selector TMC driver. Check the wiring and connectors. If the issue persists contact support.");
  201. static const char descIDLER_TMC_DRIVER_SHORTED[] PROGMEM_I1 = ISTR("Short circuit on the Idler TMC driver. Check the wiring and connectors. If the issue persists contact support.");
  202. static const char descMMU_NOT_RESPONDING[] PROGMEM_I1 = ISTR("MMU unit not responding. Check the wiring and connectors. If the issue persists contact support.");
  203. static const char descCOMMUNICATION_ERROR[] PROGMEM_I1 = ISTR("MMU unit not responding correctly. Check the wiring and connectors. If the issue persists contact support.");
  204. static const char descFILAMENT_ALREADY_LOADED[] PROGMEM_I1 = ISTR("Cannot perform the action, filament is already loaded. Unload it first.");
  205. static const char descINVALID_TOOL[] PROGMEM_I1 = ISTR("Requested filament tool is not available on this hardware. Check the G-code for tool index out of range (T0-T4).");
  206. static const char descQUEUE_FULL[] PROGMEM_I1 = ISTR("MMU Firmware internal error, please reset the MMU.");
  207. static const char descFW_UPDATE_NEEDED[] PROGMEM_I1 = ISTR("The MMU unit reports its FW version incompatible with the printer's firmware. Make sure the MMU firmware is up to date.");
  208. static const char descFW_RUNTIME_ERROR[] PROGMEM_I1 = ISTR("Internal runtime error. Try resetting the MMU unit or updating the firmware. If the issue persists contact support.");
  209. static const char descUNLOAD_MANUALLY[] PROGMEM_I1 = ISTR("Unexpected FINDA reading. Ensure no filament is under FINDA and the selector is free. Check FINDA connection.");
  210. static const char * const errorDescs[] PROGMEM = {
  211. descFINDA_DIDNT_TRIGGER,
  212. descFINDA_DIDNT_GO_OFF,
  213. descFSENSOR_DIDNT_TRIGGER,
  214. descFSENSOR_DIDNT_GO_OFF,
  215. descPULLEY_STALLED,
  216. descFSENSOR_TOO_EARLY,
  217. descSELECTOR_CANNOT_HOME,
  218. descSELECTOR_CANNOT_MOVE,
  219. descIDLER_CANNOT_HOME,
  220. descIDLER_CANNOT_MOVE,
  221. descPULLEY_WARNING_TMC_TOO_HOT,
  222. descSELECTOR_WARNING_TMC_TOO_HOT,
  223. descIDLER_WARNING_TMC_TOO_HOT,
  224. descPULLEY_TMC_OVERHEAT_ERROR,
  225. descSELECTOR_TMC_OVERHEAT_ERROR,
  226. descIDLER_TMC_OVERHEAT_ERROR,
  227. descPULLEY_TMC_DRIVER_ERROR,
  228. descSELECTOR_TMC_DRIVER_ERROR,
  229. descIDLER_TMC_DRIVER_ERROR,
  230. descPULLEY_TMC_DRIVER_RESET,
  231. descSELECTOR_TMC_DRIVER_RESET,
  232. descIDLER_TMC_DRIVER_RESET,
  233. descPULLEY_TMC_UNDERVOLTAGE_ERROR,
  234. descSELECTOR_TMC_UNDERVOLTAGE_ERROR,
  235. descIDLER_TMC_UNDERVOLTAGE_ERROR,
  236. descPULLEY_TMC_DRIVER_SHORTED,
  237. descSELECTOR_TMC_DRIVER_SHORTED,
  238. descIDLER_TMC_DRIVER_SHORTED,
  239. descMMU_NOT_RESPONDING,
  240. descCOMMUNICATION_ERROR,
  241. descFILAMENT_ALREADY_LOADED,
  242. descINVALID_TOOL,
  243. descQUEUE_FULL,
  244. descFW_UPDATE_NEEDED,
  245. descFW_RUNTIME_ERROR,
  246. descUNLOAD_MANUALLY
  247. };
  248. // we have max 3 buttons/operations to select from
  249. // one of them is "More" to show the explanation text normally hidden in the next screens.
  250. // 01234567890123456789
  251. // >bttxt >bttxt >MoreW
  252. // Therefore at least some of the buttons, which can occur on the screen together, need to be 5-chars long max @@TODO.
  253. // Beware - we only have space for 2 buttons on the LCD while the MMU has 3 buttons
  254. // -> the left button on the MMU is not used/rendered on the LCD (it is also almost unused on the MMU side)
  255. static const char btnRetry[] PROGMEM_I1 = ISTR("Retry");
  256. static const char btnContinue[] PROGMEM_I1 = ISTR("Done");
  257. static const char btnRestartMMU[] PROGMEM_I1 = ISTR("RstMMU");
  258. static const char btnUnload[] PROGMEM_I1 = ISTR("Unload");
  259. static const char btnStop[] PROGMEM_I1 = ISTR("Stop");
  260. static const char btnDisableMMU[] PROGMEM_I1 = ISTR("Disable");
  261. static const char btnMore[] PROGMEM_I1 = ISTR("More\x06");
  262. // Used to parse the buttons from Btns().
  263. static const char * const btnOperation[] PROGMEM = {
  264. btnRetry,
  265. btnContinue,
  266. btnRestartMMU,
  267. btnUnload,
  268. btnStop,
  269. btnDisableMMU
  270. };
  271. // We have 8 different operations/buttons at this time, so we need at least 4 bits to encode each.
  272. // Since one of the buttons is always "More", we can skip that one.
  273. // Therefore we need just 1 byte to describe the necessary buttons for each screen.
  274. uint8_t constexpr Btns(ButtonOperations bMiddle, ButtonOperations bRight){
  275. return ((uint8_t)bRight) << 4 | ((uint8_t)bMiddle);
  276. }
  277. static const uint8_t errorButtons[] PROGMEM = {
  278. Btns(ButtonOperations::Retry, ButtonOperations::Continue),//FINDA_DIDNT_TRIGGER
  279. Btns(ButtonOperations::Retry, ButtonOperations::Continue),//FINDA_DIDNT_GO_OFF
  280. Btns(ButtonOperations::Retry, ButtonOperations::NoOperation),//FSENSOR_DIDNT_TRIGGER
  281. Btns(ButtonOperations::Retry, ButtonOperations::NoOperation),//FSENSOR_DIDNT_GO_OFF
  282. Btns(ButtonOperations::Retry, ButtonOperations::NoOperation),//PULLEY_STALLED
  283. Btns(ButtonOperations::Retry, ButtonOperations::NoOperation),//FSENSOR_TOO_EARLY
  284. Btns(ButtonOperations::Retry, ButtonOperations::NoOperation),//SELECTOR_CANNOT_HOME
  285. Btns(ButtonOperations::Retry, ButtonOperations::NoOperation),//SELECTOR_CANNOT_MOVE
  286. Btns(ButtonOperations::Retry, ButtonOperations::NoOperation),//IDLER_CANNOT_HOME
  287. Btns(ButtonOperations::Retry, ButtonOperations::NoOperation),//IDLER_CANNOT_MOVE
  288. Btns(ButtonOperations::Continue, ButtonOperations::RestartMMU),//PULLEY_WARNING_TMC_TOO_HOT
  289. Btns(ButtonOperations::Continue, ButtonOperations::RestartMMU),//SELECTOR_WARNING_TMC_TOO_HOT
  290. Btns(ButtonOperations::Continue, ButtonOperations::RestartMMU),//IDLER_WARNING_TMC_TOO_HOT
  291. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//PULLEY_TMC_OVERHEAT_ERROR
  292. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//SELECTOR_TMC_OVERHEAT_ERROR
  293. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//IDLER_TMC_OVERHEAT_ERROR
  294. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//PULLEY_TMC_DRIVER_ERROR
  295. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//SELECTOR_TMC_DRIVER_ERROR
  296. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//IDLER_TMC_DRIVER_ERROR
  297. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//PULLEY_TMC_DRIVER_RESET
  298. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//SELECTOR_TMC_DRIVER_RESET
  299. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//IDLER_TMC_DRIVER_RESET
  300. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//PULLEY_TMC_UNDERVOLTAGE_ERROR
  301. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//SELECTOR_TMC_UNDERVOLTAGE_ERROR
  302. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//IDLER_TMC_UNDERVOLTAGE_ERROR
  303. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//PULLEY_TMC_DRIVER_SHORTED
  304. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//SELECTOR_TMC_DRIVER_SHORTED
  305. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//IDLER_TMC_DRIVER_SHORTED
  306. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//MMU_NOT_RESPONDING
  307. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//COMMUNICATION_ERROR
  308. Btns(ButtonOperations::Unload, ButtonOperations::Continue),//FILAMENT_ALREADY_LOADED
  309. Btns(ButtonOperations::StopPrint, ButtonOperations::RestartMMU),//INVALID_TOOL
  310. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//QUEUE_FULL
  311. Btns(ButtonOperations::DisableMMU, ButtonOperations::NoOperation),//FW_UPDATE_NEEDED
  312. Btns(ButtonOperations::RestartMMU, ButtonOperations::NoOperation),//FW_RUNTIME_ERROR
  313. Btns(ButtonOperations::Retry, ButtonOperations::NoOperation),//UNLOAD_MANUALLY
  314. };
  315. static_assert( sizeof(errorCodes) / sizeof(errorCodes[0]) == sizeof(errorDescs) / sizeof (errorDescs[0]));
  316. static_assert( sizeof(errorCodes) / sizeof(errorCodes[0]) == sizeof(errorTitles) / sizeof (errorTitles[0]));
  317. static_assert( sizeof(errorCodes) / sizeof(errorCodes[0]) == sizeof(errorButtons) / sizeof (errorButtons[0]));
  318. } // namespace MMU2