My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

Version.h 3.2KB

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