123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
-
- #pragma once
-
-
- #ifndef SHORT_BUILD_VERSION
- #define SHORT_BUILD_VERSION "2.0.4"
- #endif
-
-
- #ifndef DETAILED_BUILD_VERSION
- #define DETAILED_BUILD_VERSION SHORT_BUILD_VERSION " (GitHub)"
- #endif
-
-
- #ifndef STRING_DISTRIBUTION_DATE
- #define STRING_DISTRIBUTION_DATE "2020-02-21"
- #endif
-
-
-
- #define MARLIN_HEX_VERSION 020004
- #ifndef REQUIRED_CONFIGURATION_H_VERSION
- #define REQUIRED_CONFIGURATION_H_VERSION MARLIN_HEX_VERSION
- #endif
- #ifndef REQUIRED_CONFIGURATION_ADV_H_VERSION
- #define REQUIRED_CONFIGURATION_ADV_H_VERSION MARLIN_HEX_VERSION
- #endif
-
-
- #ifndef PROTOCOL_VERSION
- #define PROTOCOL_VERSION "1.0"
- #endif
-
-
- #ifndef MACHINE_NAME
- #define MACHINE_NAME "3D Printer"
- #endif
-
-
- #ifndef SOURCE_CODE_URL
- #define SOURCE_CODE_URL "https://github.com/MarlinFirmware/Marlin"
- #endif
-
-
- #ifndef DEFAULT_MACHINE_UUID
- #define DEFAULT_MACHINE_UUID "cede2a2f-41a2-4748-9b12-c55c62f367ff"
- #endif
-
-
-
- #ifndef WEBSITE_URL
- #define WEBSITE_URL "http://marlinfw.org"
- #endif
-
-
- #ifndef USB_DEVICE_VENDOR_ID
- #define USB_DEVICE_VENDOR_ID 0x03EB
- #endif
- #ifndef USB_DEVICE_PRODUCT_ID
- #define USB_DEVICE_PRODUCT_ID 0x2424
- #endif
-
- #ifndef USB_DEVICE_MANUFACTURE_NAME
- #define USB_DEVICE_MANUFACTURE_NAME WEBSITE_URL
- #endif
- #ifdef CUSTOM_MACHINE_NAME
- #define USB_DEVICE_PRODUCT_NAME CUSTOM_MACHINE_NAME
- #else
- #define USB_DEVICE_PRODUCT_NAME MACHINE_NAME
- #endif
- #define USB_DEVICE_SERIAL_NAME "123985739853"
|