RepRap 开源3D 打印机kossel mini 固件解析及下载 #ifndef CONFIGURATION_H #define CONFIGURATION_H // This configuration file contains the basic settings.//本文件只包含基本配置 // Advanced settings can be found in Configuration_adv.h//高级配置需要到 Configuration_adv.h 文件中配置 // BASIC SETTINGS: select your board type, temperature sensor type, axis scaling, and endstop configuration 基本设置:选择板子类型,温度传感器类型,轴比率,限位开关设置 //=========================================================================== //============================= DELTA Printer =============================== //=========================================================================== // For a Delta printer replace the configuration files with the files in the // example_configurations/delta directory. // // User-specified version info of this build to display in [Pronterface, etc] terminal window during // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this // build by the user have been successfully uploaded into firmware. #define STRING_VERSION_CONFIG_H __DATE__ " " __TIME__ // build date and time #define STRING_CONFIG_H_AUTHOR "(athlon, D-force)" // Who made the changes. 这里配置修改配置的作者 // SERIAL_PORT selects which serial port should be used for communication with the host. // This allows the connection of wireless adapters (for instance) to non-default port pins. // Serial port 0 is still used by the Arduino bootloader regardless of this setting. #define SERIAL_PORT 0 //这里配置用于传输Gcode 的串口号,默认使用串口0 作为通讯串口,如果想要在其它串口用蓝牙通讯,可以配置为相应的串口号。 // This determines the communication speed of the printer // This determines the communication speed of the printer //#define BAUDRATE 250000 #d...