util.cpp 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579
  1. #include "Configuration.h"
  2. #include "ultralcd.h"
  3. #include "sound.h"
  4. #include "language.h"
  5. #include "util.h"
  6. // Allocate the version string in the program memory. Otherwise the string lands either on the stack or in the global RAM.
  7. const char FW_VERSION_STR[] PROGMEM = FW_VERSION;
  8. const char* FW_VERSION_STR_P()
  9. {
  10. return FW_VERSION_STR;
  11. }
  12. const char FW_PRUSA3D_MAGIC_STR[] PROGMEM = FW_PRUSA3D_MAGIC;
  13. const char* FW_PRUSA3D_MAGIC_STR_P()
  14. {
  15. return FW_PRUSA3D_MAGIC_STR;
  16. }
  17. const char STR_REVISION_DEV [] PROGMEM = "dev";
  18. const char STR_REVISION_ALPHA[] PROGMEM = "alpha";
  19. const char STR_REVISION_BETA [] PROGMEM = "beta";
  20. const char STR_REVISION_RC [] PROGMEM = "rc";
  21. inline bool is_whitespace_or_nl(char c)
  22. {
  23. return c == ' ' || c == '\t' || c == '\n' || c == 'r';
  24. }
  25. inline bool is_whitespace_or_nl_or_eol(char c)
  26. {
  27. return c == 0 || c == ' ' || c == '\t' || c == '\n' || c == '\r';
  28. }
  29. inline bool is_digit(char c)
  30. {
  31. return c >= '0' && c <= '9';
  32. }
  33. // Parse a major.minor.revision version number.
  34. // Return true if valid.
  35. inline bool parse_version(const char *str, uint16_t version[4])
  36. {
  37. #if 0
  38. SERIAL_ECHOPGM("Parsing version string ");
  39. SERIAL_ECHO(str);
  40. SERIAL_ECHOLNPGM("");
  41. #endif
  42. const char *major = str;
  43. const char *p = str;
  44. while (is_digit(*p)) ++ p;
  45. if (*p != '.')
  46. return false;
  47. const char *minor = ++ p;
  48. while (is_digit(*p)) ++ p;
  49. if (*p != '.')
  50. return false;
  51. const char *rev = ++ p;
  52. while (is_digit(*p)) ++ p;
  53. if (! is_whitespace_or_nl_or_eol(*p) && *p != '-')
  54. return false;
  55. char *endptr = NULL;
  56. version[0] = strtol(major, &endptr, 10);
  57. if (endptr != minor - 1)
  58. return false;
  59. version[1] = strtol(minor, &endptr, 10);
  60. if (endptr != rev - 1)
  61. return false;
  62. version[2] = strtol(rev, &endptr, 10);
  63. if (endptr != p)
  64. return false;
  65. version[3] = FIRMWARE_REVISION_RELEASED;
  66. if (*p ++ == '-') {
  67. const char *q = p;
  68. while (! is_whitespace_or_nl_or_eol(*q))
  69. ++ q;
  70. uint8_t n = q - p;
  71. if (n == strlen_P(STR_REVISION_DEV) && strncmp_P(p, STR_REVISION_DEV, n) == 0)
  72. version[3] = FIRMWARE_REVISION_DEV;
  73. else if (n == strlen_P(STR_REVISION_ALPHA) && strncmp_P(p, STR_REVISION_ALPHA, n) == 0)
  74. version[3] = FIRMWARE_REVISION_ALPHA;
  75. else if (n == strlen_P(STR_REVISION_BETA) && strncmp_P(p, STR_REVISION_BETA, n) == 0)
  76. version[3] = FIRMWARE_REVISION_BETA;
  77. else if ((n == 2 || n == 3) && (p[0] == 'r' || p[0] == 'R') && (p[1] == 'c' || p[1] == 'C')) {
  78. if (n == 2)
  79. version[3] = FIRMWARE_REVISION_RC;
  80. else {
  81. if (is_digit(p[2]))
  82. version[3] = FIRMWARE_REVISION_RC + p[2] - '1';
  83. else
  84. return false;
  85. }
  86. } else
  87. return false;
  88. }
  89. #if 0
  90. SERIAL_ECHOPGM("Version parsed, major: ");
  91. SERIAL_ECHO(version[0]);
  92. SERIAL_ECHOPGM(", minor: ");
  93. SERIAL_ECHO(version[1]);
  94. SERIAL_ECHOPGM(", revision: ");
  95. SERIAL_ECHO(version[2]);
  96. SERIAL_ECHOPGM(", flavor: ");
  97. SERIAL_ECHO(version[3]);
  98. SERIAL_ECHOLNPGM("");
  99. #endif
  100. return true;
  101. }
  102. inline bool strncmp_PP(const char *p1, const char *p2, uint8_t n)
  103. {
  104. for (; n > 0; -- n, ++ p1, ++ p2) {
  105. if (pgm_read_byte(p1) >= 65 && pgm_read_byte(p1) <= 92) //p1 is upper case (p2 is always lowercase)
  106. {
  107. if ((pgm_read_byte(p1)+32) < pgm_read_byte(p2))
  108. return -1;
  109. if ((pgm_read_byte(p1)+32) > pgm_read_byte(p2))
  110. return 1;
  111. }
  112. else if (pgm_read_byte(p1) == 0) {
  113. return 0;
  114. }
  115. else { //p1 is lowercase
  116. if (pgm_read_byte(p1) < pgm_read_byte(p2))
  117. return -1;
  118. if (pgm_read_byte(p1) > pgm_read_byte(p2))
  119. return 1;
  120. }
  121. }
  122. return 0;
  123. }
  124. // Parse a major.minor.revision version number.
  125. // Return true if valid.
  126. inline bool parse_version_P(const char *str, uint16_t version[4])
  127. {
  128. #if 0
  129. SERIAL_ECHOPGM("Parsing version string ");
  130. SERIAL_ECHORPGM(str);
  131. SERIAL_ECHOLNPGM("");
  132. #endif
  133. const char *major = str;
  134. const char *p = str;
  135. while (is_digit(char(pgm_read_byte(p)))) ++ p;
  136. if (pgm_read_byte(p) != '.')
  137. return false;
  138. const char *minor = ++ p;
  139. while (is_digit(char(pgm_read_byte(p)))) ++ p;
  140. if (pgm_read_byte(p) != '.')
  141. return false;
  142. const char *rev = ++ p;
  143. while (is_digit(char(pgm_read_byte(p)))) ++ p;
  144. if (! is_whitespace_or_nl_or_eol(char(pgm_read_byte(p))) && pgm_read_byte(p) != '-')
  145. return false;
  146. char buf[5];
  147. uint8_t n = minor - major - 1;
  148. if (n > 4)
  149. return false;
  150. memcpy_P(buf, major, n); buf[n] = 0;
  151. char *endptr = NULL;
  152. version[0] = strtol(buf, &endptr, 10);
  153. if (*endptr != 0)
  154. return false;
  155. n = rev - minor - 1;
  156. if (n > 4)
  157. return false;
  158. memcpy_P(buf, minor, n); buf[n] = 0;
  159. version[1] = strtol(buf, &endptr, 10);
  160. if (*endptr != 0)
  161. return false;
  162. n = p - rev;
  163. if (n > 4)
  164. return false;
  165. memcpy_P(buf, rev, n);
  166. buf[n] = 0;
  167. version[2] = strtol(buf, &endptr, 10);
  168. if (*endptr != 0)
  169. return false;
  170. version[3] = FIRMWARE_REVISION_RELEASED;
  171. if (pgm_read_byte(p ++) == '-') {
  172. const char *q = p;
  173. while (! is_whitespace_or_nl_or_eol(char(pgm_read_byte(q))))
  174. ++ q;
  175. n = q - p;
  176. if (n == strlen_P(STR_REVISION_DEV) && strncmp_PP(p, STR_REVISION_DEV, n) == 0)
  177. version[3] = FIRMWARE_REVISION_DEV;
  178. else if (n == strlen_P(STR_REVISION_ALPHA) && strncmp_PP(p, STR_REVISION_ALPHA, n) == 0)
  179. version[3] = FIRMWARE_REVISION_ALPHA;
  180. else if (n == strlen_P(STR_REVISION_BETA) && strncmp_PP(p, STR_REVISION_BETA, n) == 0)
  181. version[3] = FIRMWARE_REVISION_BETA;
  182. else if ((n == 2 || n == 3) && strncmp_PP(p, STR_REVISION_RC, 2) == 0) {
  183. if (n == 2)
  184. version[3] = FIRMWARE_REVISION_RC;
  185. else {
  186. p += 2;
  187. if (is_digit(pgm_read_byte(p)))
  188. version[3] = FIRMWARE_REVISION_RC + pgm_read_byte(p) - '1';
  189. else
  190. return false;
  191. }
  192. } else
  193. return false;
  194. }
  195. #if 0
  196. SERIAL_ECHOPGM("Version parsed, major: ");
  197. SERIAL_ECHO(version[0]);
  198. SERIAL_ECHOPGM(", minor: ");
  199. SERIAL_ECHO(version[1]);
  200. SERIAL_ECHOPGM(", revision: ");
  201. SERIAL_ECHO(version[2]);
  202. SERIAL_ECHOPGM(", flavor: ");
  203. SERIAL_ECHO(version[3]);
  204. SERIAL_ECHOLNPGM("");
  205. #endif
  206. return true;
  207. }
  208. // 1 - yes, 0 - false, -1 - error;
  209. inline int8_t is_provided_version_newer(const char *version_string)
  210. {
  211. uint16_t ver_gcode[4], ver_current[4];
  212. if (! parse_version(version_string, ver_gcode))
  213. return -1;
  214. if (! parse_version_P(FW_VERSION_STR, ver_current))
  215. return 0; // this shall not happen
  216. for (uint8_t i = 0; i < 3; ++ i)
  217. if (ver_gcode[i] > ver_current[i])
  218. return 1;
  219. return 0;
  220. }
  221. bool force_selftest_if_fw_version()
  222. {
  223. //if fw version used before flashing new firmware (fw version currently stored in eeprom) is lower then 3.1.2-RC2, function returns true to force selftest
  224. uint16_t ver_eeprom[4];
  225. uint16_t ver_with_calibration[4] = {3, 1, 2, 4}; //hardcoded 3.1.2-RC2 version
  226. bool force_selftest = false;
  227. ver_eeprom[0] = eeprom_read_word((uint16_t*)EEPROM_FIRMWARE_VERSION_MAJOR);
  228. ver_eeprom[1] = eeprom_read_word((uint16_t*)EEPROM_FIRMWARE_VERSION_MINOR);
  229. ver_eeprom[2] = eeprom_read_word((uint16_t*)EEPROM_FIRMWARE_VERSION_REVISION);
  230. ver_eeprom[3] = eeprom_read_word((uint16_t*)EEPROM_FIRMWARE_VERSION_FLAVOR);
  231. for (uint8_t i = 0; i < 4; ++i) {
  232. if (ver_with_calibration[i] > ver_eeprom[i]) {
  233. force_selftest = true;
  234. break;
  235. }
  236. else if (ver_with_calibration[i] < ver_eeprom[i])
  237. break;
  238. }
  239. //force selftest also in case that version used before flashing new firmware was 3.2.0-RC1
  240. if ((ver_eeprom[0] == 3) && (ver_eeprom[1] == 2) && (ver_eeprom[2] == 0) && (ver_eeprom[3] == 3)) force_selftest = true;
  241. return force_selftest;
  242. }
  243. bool show_upgrade_dialog_if_version_newer(const char *version_string)
  244. {
  245. uint16_t ver_gcode[4], ver_current[4];
  246. if (! parse_version(version_string, ver_gcode)) {
  247. // SERIAL_PROTOCOLLNPGM("parse_version failed");
  248. return false;
  249. }
  250. if (! parse_version_P(FW_VERSION_STR, ver_current)) {
  251. // SERIAL_PROTOCOLLNPGM("parse_version_P failed");
  252. return false; // this shall not happen
  253. }
  254. // SERIAL_PROTOCOLLNPGM("versions parsed");
  255. bool upgrade = false;
  256. for (uint8_t i = 0; i < 4; ++ i) {
  257. if (ver_gcode[i] > ver_current[i]) {
  258. upgrade = true;
  259. break;
  260. } else if (ver_gcode[i] < ver_current[i])
  261. break;
  262. }
  263. if (upgrade) {
  264. lcd_display_message_fullscreen_P(_i("New firmware version available:"));////MSG_NEW_FIRMWARE_AVAILABLE c=20 r=2
  265. lcd_puts_at_P(0, 2, PSTR(""));
  266. for (const char *c = version_string; ! is_whitespace_or_nl_or_eol(*c); ++ c)
  267. lcd_putc(*c);
  268. lcd_puts_at_P(0, 3, _i("Please upgrade."));////MSG_NEW_FIRMWARE_PLEASE_UPGRADE c=20
  269. Sound_MakeCustom(50,1000,false);
  270. delay_keep_alive(500);
  271. Sound_MakeCustom(50,1000,false);
  272. lcd_wait_for_click_delay(30);
  273. lcd_update_enable(true);
  274. lcd_clear();
  275. lcd_update(0);
  276. }
  277. // Succeeded.
  278. return true;
  279. }
  280. void update_current_firmware_version_to_eeprom()
  281. {
  282. for (int8_t i = 0; i < FW_PRUSA3D_MAGIC_LEN; ++ i)
  283. eeprom_update_byte((uint8_t*)(EEPROM_FIRMWARE_PRUSA_MAGIC+i), pgm_read_byte(FW_PRUSA3D_MAGIC_STR+i));
  284. uint16_t ver_current[4];
  285. if (parse_version_P(FW_VERSION_STR, ver_current)) {
  286. eeprom_update_word((uint16_t*)EEPROM_FIRMWARE_VERSION_MAJOR, ver_current[0]);
  287. eeprom_update_word((uint16_t*)EEPROM_FIRMWARE_VERSION_MINOR, ver_current[1]);
  288. eeprom_update_word((uint16_t*)EEPROM_FIRMWARE_VERSION_REVISION, ver_current[2]);
  289. // See FirmwareRevisionFlavorType for the definition of firmware flavors.
  290. eeprom_update_word((uint16_t*)EEPROM_FIRMWARE_VERSION_FLAVOR, ver_current[3]);
  291. }
  292. }
  293. //-//
  294. void lcd_checking_menu(void);
  295. ClNozzleDiameter oNozzleDiameter=ClNozzleDiameter::_Diameter_400;
  296. ClCheckMode oCheckMode=ClCheckMode::_None;
  297. ClCheckModel oCheckModel=ClCheckModel::_None;
  298. ClCheckVersion oCheckVersion=ClCheckVersion::_None;
  299. ClCheckGcode oCheckGcode=ClCheckGcode::_None;
  300. void fCheckModeInit()
  301. {
  302. oCheckMode=(ClCheckMode)eeprom_read_byte((uint8_t*)EEPROM_CHECK_MODE);
  303. if(oCheckMode==ClCheckMode::_Undef)
  304. {
  305. oCheckMode=ClCheckMode::_Warn;
  306. eeprom_update_byte((uint8_t*)EEPROM_CHECK_MODE,(uint8_t)oCheckMode);
  307. }
  308. if(farm_mode)
  309. oCheckMode=ClCheckMode::_Strict;
  310. oNozzleDiameter=(ClNozzleDiameter)eeprom_read_byte((uint8_t*)EEPROM_NOZZLE_DIAMETER);
  311. if((oNozzleDiameter==ClNozzleDiameter::_Diameter_Undef)&& !farm_mode)
  312. {
  313. oNozzleDiameter=ClNozzleDiameter::_Diameter_400;
  314. eeprom_update_byte((uint8_t*)EEPROM_NOZZLE_DIAMETER,(uint8_t)oNozzleDiameter);
  315. eeprom_update_word((uint16_t*)EEPROM_NOZZLE_DIAMETER_uM,400);
  316. }
  317. oCheckModel=(ClCheckModel)eeprom_read_byte((uint8_t*)EEPROM_CHECK_MODEL);
  318. if(oCheckModel==ClCheckModel::_Undef)
  319. {
  320. oCheckModel=ClCheckModel::_Warn;
  321. eeprom_update_byte((uint8_t*)EEPROM_CHECK_MODEL,(uint8_t)oCheckModel);
  322. }
  323. oCheckVersion=(ClCheckVersion)eeprom_read_byte((uint8_t*)EEPROM_CHECK_VERSION);
  324. if(oCheckVersion==ClCheckVersion::_Undef)
  325. {
  326. oCheckVersion=ClCheckVersion::_Warn;
  327. eeprom_update_byte((uint8_t*)EEPROM_CHECK_VERSION,(uint8_t)oCheckVersion);
  328. }
  329. oCheckGcode=(ClCheckGcode)eeprom_read_byte((uint8_t*)EEPROM_CHECK_GCODE);
  330. if(oCheckGcode==ClCheckGcode::_Undef)
  331. {
  332. oCheckGcode=ClCheckGcode::_Warn;
  333. eeprom_update_byte((uint8_t*)EEPROM_CHECK_GCODE,(uint8_t)oCheckGcode);
  334. }
  335. }
  336. void nozzle_diameter_check(uint16_t nDiameter)
  337. {
  338. uint16_t nDiameter_um;
  339. if(oCheckMode==ClCheckMode::_None)
  340. return;
  341. nDiameter_um=eeprom_read_word((uint16_t*)EEPROM_NOZZLE_DIAMETER_uM);
  342. if(nDiameter==nDiameter_um)
  343. return;
  344. //SERIAL_ECHO_START;
  345. //SERIAL_ECHOLNPGM("Nozzle diameter doesn't match ...");
  346. //SERIAL_ECHOPGM("actual : ");
  347. //SERIAL_ECHOLN((float)(nDiameter_um/1000.0));
  348. //SERIAL_ECHOPGM("expected: ");
  349. //SERIAL_ECHOLN((float)(nDiameter/1000.0));
  350. switch(oCheckMode)
  351. {
  352. case ClCheckMode::_Warn:
  353. lcd_show_fullscreen_message_and_wait_P(_i("Nozzle diameter doesn't match! Press the knob to continue."));
  354. break;
  355. case ClCheckMode::_Strict:
  356. lcd_show_fullscreen_message_and_wait_P(_i("Nozzle diameter doesn't match! Print is aborted, press the knob."));
  357. lcd_print_stop();
  358. break;
  359. case ClCheckMode::_None:
  360. case ClCheckMode::_Undef:
  361. break;
  362. }
  363. bSettings=false; // flag ('fake parameter') for 'lcd_checking_menu()' function
  364. menu_submenu(lcd_checking_menu);
  365. }
  366. void printer_model_check(uint16_t nPrinterModel)
  367. {
  368. if(oCheckModel==ClCheckModel::_None)
  369. return;
  370. if(nPrinterModel==nPrinterType)
  371. return;
  372. //SERIAL_ECHO_START;
  373. //SERIAL_ECHOLNPGM("Printer model doesn't match ...");
  374. //SERIAL_ECHOPGM("actual : ");
  375. //SERIAL_ECHOLN(nPrinterType);
  376. //SERIAL_ECHOPGM("expected: ");
  377. //SERIAL_ECHOLN(nPrinterModel);
  378. switch(oCheckModel)
  379. {
  380. case ClCheckModel::_Warn:
  381. lcd_show_fullscreen_message_and_wait_P(_i("Printer model doesn't match! Press the knob to continue."));
  382. break;
  383. case ClCheckModel::_Strict:
  384. lcd_show_fullscreen_message_and_wait_P(_i("Printer model doesn't match! Print is aborted, press the knob."));
  385. lcd_print_stop();
  386. break;
  387. case ClCheckModel::_None:
  388. case ClCheckModel::_Undef:
  389. break;
  390. }
  391. }
  392. uint8_t mCompareValue(uint16_t nX,uint16_t nY)
  393. {
  394. if(nX>nY)
  395. return((uint8_t)ClCompareValue::_Greater);
  396. if(nX<nY)
  397. return((uint8_t)ClCompareValue::_Less);
  398. return((uint8_t)ClCompareValue::_Equal);
  399. }
  400. void fw_version_check(const char *pVersion)
  401. {
  402. uint16_t aVersion[4];
  403. uint8_t nCompareValueResult;
  404. if(oCheckVersion==ClCheckVersion::_None)
  405. return;
  406. parse_version(pVersion,aVersion);
  407. nCompareValueResult=mCompareValue(aVersion[0],eeprom_read_word((uint16_t*)EEPROM_FIRMWARE_VERSION_MAJOR))<<6;
  408. nCompareValueResult+=mCompareValue(aVersion[1],eeprom_read_word((uint16_t*)EEPROM_FIRMWARE_VERSION_MINOR))<<4;
  409. nCompareValueResult+=mCompareValue(aVersion[2],eeprom_read_word((uint16_t*)EEPROM_FIRMWARE_VERSION_REVISION))<<2;
  410. nCompareValueResult+=mCompareValue(aVersion[3],eeprom_read_word((uint16_t*)EEPROM_FIRMWARE_VERSION_FLAVOR));
  411. if(nCompareValueResult==COMPARE_VALUE_EQUAL)
  412. return;
  413. if((nCompareValueResult<COMPARE_VALUE_EQUAL)&&oCheckVersion==ClCheckVersion::_Warn)
  414. return;
  415. //SERIAL_ECHO_START;
  416. //SERIAL_ECHOLNPGM("FW version doesn't match ...");
  417. //SERIAL_ECHOPGM("actual : ");
  418. //SERIAL_ECHOLN(FW_VERSION);
  419. //SERIAL_ECHOPGM("expected: ");
  420. //SERIAL_ECHOLN(pVersion);
  421. switch(oCheckVersion)
  422. {
  423. case ClCheckVersion::_Warn:
  424. lcd_show_fullscreen_message_and_wait_P(_i("FW version doesn't match! Press the knob to continue."));
  425. break;
  426. case ClCheckVersion::_Strict:
  427. lcd_show_fullscreen_message_and_wait_P(_i("FW version doesn't match! Print is aborted, press the knob."));
  428. lcd_print_stop();
  429. break;
  430. case ClCheckVersion::_None:
  431. case ClCheckVersion::_Undef:
  432. break;
  433. }
  434. }
  435. void gcode_level_check(uint16_t nGcodeLevel)
  436. {
  437. if(oCheckGcode==ClCheckGcode::_None)
  438. return;
  439. if(nGcodeLevel==(uint16_t)GCODE_LEVEL)
  440. return;
  441. if((nGcodeLevel<(uint16_t)GCODE_LEVEL)&&(oCheckGcode==ClCheckGcode::_Warn))
  442. return;
  443. //SERIAL_ECHO_START;
  444. //SERIAL_ECHOLNPGM("G-code level doesn't match ...");
  445. //SERIAL_ECHOPGM("actual : ");
  446. //SERIAL_ECHOLN(GCODE_LEVEL);
  447. //SERIAL_ECHOPGM("expected: ");
  448. //SERIAL_ECHOLN(nGcodeLevel);
  449. switch(oCheckGcode)
  450. {
  451. case ClCheckGcode::_Warn:
  452. lcd_show_fullscreen_message_and_wait_P(_i("G-code level doesn't match! Press the knob to continue."));
  453. break;
  454. case ClCheckGcode::_Strict:
  455. lcd_show_fullscreen_message_and_wait_P(_i("G-code level doesn't match! Print is aborted, press the knob."));
  456. lcd_print_stop();
  457. break;
  458. case ClCheckGcode::_None:
  459. case ClCheckGcode::_Undef:
  460. break;
  461. }
  462. }
  463. //-// -> cmdqueue ???
  464. #define PRINTER_NAME_LENGTH ((sizeof(PRINTER_MMU_NAME)>sizeof(PRINTER_NAME))?(sizeof(PRINTER_MMU_NAME)-1):(sizeof(PRINTER_NAME)-1))
  465. #define GCODE_DELIMITER '"'
  466. #define ELLIPSIS "..."
  467. char* code_string(char* pStr,size_t* nLength)
  468. {
  469. char* pStrBegin;
  470. char* pStrEnd;
  471. pStrBegin=strchr(pStr,GCODE_DELIMITER);
  472. if(!pStrBegin)
  473. return(NULL);
  474. pStrBegin++;
  475. pStrEnd=strchr(pStrBegin,GCODE_DELIMITER);
  476. if(!pStrEnd)
  477. return(NULL);
  478. *nLength=pStrEnd-pStrBegin;
  479. return(pStrBegin);
  480. }
  481. void printer_smodel_check(char* pStrPos)
  482. {
  483. char* pResult;
  484. size_t nLength,nPrinterNameLength;
  485. bool bCheckOK;
  486. char sPrinterName[PRINTER_NAME_LENGTH+sizeof(ELLIPSIS)-1+1]="";
  487. nPrinterNameLength=strlen_P(::sPrinterName);
  488. pResult=code_string(pStrPos,&nLength);
  489. if(pResult!=NULL)
  490. {
  491. strlcpy(sPrinterName,pResult,min(nPrinterNameLength,nLength)+1);
  492. if(nLength>nPrinterNameLength)
  493. strcat(sPrinterName,ELLIPSIS);
  494. bCheckOK=(nLength==nPrinterNameLength);
  495. if(bCheckOK&&(!strncasecmp_P(pResult,::sPrinterName,nLength))) // i.e. string compare execute only if lengths are same
  496. return;
  497. }
  498. //SERIAL_ECHO_START;
  499. //SERIAL_ECHOLNPGM("Printer model doesn't match ...");
  500. //SERIAL_ECHOPGM("actual : \"");
  501. //serialprintPGM(::sPrinterName);
  502. //SERIAL_ECHOLNPGM("\"");
  503. //SERIAL_ECHOPGM("expected: \"");
  504. ////SERIAL_ECHO(sPrinterName);
  505. //SERIAL_ECHOLNPGM("\"");
  506. switch(oCheckModel)
  507. {
  508. case ClCheckModel::_Warn:
  509. lcd_show_fullscreen_message_and_wait_P(_i("Printer model doesn't match! Press the knob to continue."));
  510. break;
  511. case ClCheckModel::_Strict:
  512. lcd_show_fullscreen_message_and_wait_P(_i("Printer model doesn't match! Print is aborted, press the knob."));
  513. lcd_print_stop();
  514. break;
  515. case ClCheckModel::_None:
  516. case ClCheckModel::_Undef:
  517. break;
  518. }
  519. }
  520. void fSetMmuMode(bool bMMu)
  521. {
  522. if(bMMu)
  523. {
  524. nPrinterType=pgm_read_word(&_nPrinterMmuType);
  525. sPrinterName=_sPrinterMmuName;
  526. }
  527. else {
  528. nPrinterType=pgm_read_word(&_nPrinterType);
  529. sPrinterName=_sPrinterName;
  530. }
  531. }