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 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. /**
  23. * This file is the standard Marlin version identifier file, all fields can be
  24. * overriden by the ones defined on _Version.h by using the Configuration.h
  25. * directive USE_AUTOMATIC_VERSIONING.
  26. */
  27. /**
  28. * Marlin release version identifier
  29. */
  30. #define SHORT_BUILD_VERSION "1.1.0-RCBugFix"
  31. /**
  32. * Verbose version identifier which should contain a reference to the location
  33. * from where the binary was downloaded or the source code was compiled.
  34. */
  35. #define DETAILED_BUILD_VERSION SHORT_BUILD_VERSION " (Github)"
  36. /**
  37. * The STRING_DISTRIBUTION_DATE represents when the binary file was built,
  38. * here we define this default string as the date where the latest release
  39. * version was tagged.
  40. */
  41. #define STRING_DISTRIBUTION_DATE "2016-04-24 12:00"
  42. /**
  43. * @todo: Missing documentation block
  44. */
  45. #define PROTOCOL_VERSION "1.0"
  46. /**
  47. * Defines a generic printer name to be output to the LCD after booting Marlin.
  48. */
  49. #define MACHINE_NAME "3D Printer"
  50. /**
  51. * The SOURCE_CODE_URL is the location where users will find the Marlin Source
  52. * Code which is installed on the device. In most cases —unless the manufacturer
  53. * has a distinct Github fork— the Source Code URL should just be the main
  54. * Marlin repository.
  55. */
  56. #define SOURCE_CODE_URL "https://github.com/MarlinFirmware/Marlin"
  57. /**
  58. * Default generic printer UUID.
  59. */
  60. #define DEFAULT_MACHINE_UUID "cede2a2f-41a2-4748-9b12-c55c62f367ff"
  61. /**
  62. * The WEBSITE_URL is the location where users can get more information such as
  63. * documentation about a specific Marlin release.
  64. */
  65. #define WEBSITE_URL "http://marlinfw.org"