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.

Version.h 3.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2019 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. #pragma once
  23. #include "../core/macros.h" // for ENABLED
  24. /**
  25. * This file is the standard Marlin version identifier file.
  26. * Use -DUSE_AUTOMATIC_VERSIONING=1 and a custom _Version.h
  27. * to override these values.
  28. */
  29. #if ENABLED(USE_AUTOMATIC_VERSIONING)
  30. #include "_Version.h"
  31. #else
  32. /**
  33. * Marlin release version identifier
  34. */
  35. #define SHORT_BUILD_VERSION "bugfix-2.0.x"
  36. /**
  37. * Verbose version identifier which should contain a reference to the location
  38. * from where the binary was downloaded or the source code was compiled.
  39. */
  40. #define DETAILED_BUILD_VERSION SHORT_BUILD_VERSION " (Github)"
  41. /**
  42. * The STRING_DISTRIBUTION_DATE represents when the binary file was built,
  43. * here we define this default string as the date where the latest release
  44. * version was tagged.
  45. */
  46. #define STRING_DISTRIBUTION_DATE "2019-06-26"
  47. /**
  48. * Required minimum Configuration.h and Configuration_adv.h file versions.
  49. *
  50. * You must increment this version number for every significant change such as,
  51. * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option on
  52. * the configuration files.
  53. */
  54. #define REQUIRED_CONFIGURATION_H_VERSION 020000
  55. #define REQUIRED_CONFIGURATION_ADV_H_VERSION 020000
  56. /**
  57. * The protocol for communication to the host. Protocol indicates communication
  58. * standards such as the use of ASCII, "echo:" and "error:" line prefixes, etc.
  59. * (Other behaviors are given by the firmware version and capabilities report.)
  60. */
  61. #define PROTOCOL_VERSION "1.0"
  62. /**
  63. * Defines a generic printer name to be output to the LCD after booting Marlin.
  64. */
  65. #define MACHINE_NAME "3D Printer"
  66. /**
  67. * The SOURCE_CODE_URL is the location where users will find the Marlin Source
  68. * Code which is installed on the device. In most cases —unless the manufacturer
  69. * has a distinct Github fork— the Source Code URL should just be the main
  70. * Marlin repository.
  71. */
  72. #define SOURCE_CODE_URL "https://github.com/MarlinFirmware/Marlin"
  73. /**
  74. * Default generic printer UUID.
  75. */
  76. #define DEFAULT_MACHINE_UUID "cede2a2f-41a2-4748-9b12-c55c62f367ff"
  77. /**
  78. * The WEBSITE_URL is the location where users can get more information such as
  79. * documentation about a specific Marlin release.
  80. */
  81. #define WEBSITE_URL "http://marlinfw.org"
  82. #endif // USE_AUTOMATIC_VERSIONING