language.h 586 B

123456789101112131415161718192021222324252627282930313233
  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. #ifndef MACHINE_UUID
  10. #define MACHINE_UUID "00000000-0000-0000-0000-000000000000"
  11. #endif
  12. #define MSG_FW_VERSION "Firmware"
  13. #define STRINGIFY_(n) #n
  14. #define STRINGIFY(n) STRINGIFY_(n)
  15. // Common serial messages
  16. #define MSG_MARLIN "Marlin"
  17. // Serial Console Messages (do not translate those!)
  18. // LCD Menu Messages
  19. #include "language_all.h"
  20. #endif //__LANGUAGE_H