language.h 617 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef LANGUAGE_H
  2. #define LANGUAGE_H
  3. #define PROTOCOL_VERSION "1.0"
  4. #ifdef CUSTOM_MENDEL_NAME
  5. // #define CUSTOM_MENDEL_NAME CUSTOM_MENDEL_NAME
  6. #else
  7. #define MACHINE_NAME "Mendel"
  8. #endif
  9. #define _i PSTR
  10. #define _n PSTR
  11. #ifndef MACHINE_UUID
  12. #define MACHINE_UUID "00000000-0000-0000-0000-000000000000"
  13. #endif
  14. #define MSG_FW_VERSION "Firmware"
  15. #define STRINGIFY_(n) #n
  16. #define STRINGIFY(n) STRINGIFY_(n)
  17. // Common serial messages
  18. #define MSG_MARLIN "Marlin"
  19. // Serial Console Messages (do not translate those!)
  20. // LCD Menu Messages
  21. #include "language_all.h"
  22. #endif //__LANGUAGE_H