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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. #ifndef __MARLINH
  2. #define __MARLINH
  3. // Tonokip RepRap firmware rewrite based off of Hydra-mmm firmware.
  4. // Licence: GPL
  5. #include <WProgram.h>
  6. #include "fastio.h"
  7. #include <avr/pgmspace.h>
  8. //#define SERIAL_ECHO(x) Serial << "echo: " << x;
  9. //#define SERIAL_ECHOLN(x) Serial << "echo: "<<x<<endl;
  10. //#define SERIAL_ERROR(x) Serial << "Error: " << x;
  11. //#define SERIAL_ERRORLN(x) Serial << "Error: " << x<<endl;
  12. //#define SERIAL_PROTOCOL(x) Serial << x;
  13. //#define SERIAL_PROTOCOLLN(x) Serial << x<<endl;
  14. #define SERIAL_PROTOCOL(x) Serial.print(x);
  15. #define SERIAL_PROTOCOLPGM(x) serialprintPGM(PSTR(x));
  16. #define SERIAL_PROTOCOLLN(x) {Serial.print(x);Serial.write('\n');}
  17. #define SERIAL_PROTOCOLLNPGM(x) {serialprintPGM(PSTR(x));Serial.write('\n');}
  18. const char errormagic[] PROGMEM ="Error:";
  19. const char echomagic[] PROGMEM ="echo:";
  20. #define SERIAL_ERROR_START serialprintPGM(errormagic);
  21. #define SERIAL_ERROR(x) SERIAL_PROTOCOL(x)
  22. #define SERIAL_ERRORPGM(x) SERIAL_PROTOCOLPGM(x)
  23. #define SERIAL_ERRORLN(x) SERIAL_PROTOCOLLN(x)
  24. #define SERIAL_ERRORLNPGM(x) SERIAL_PROTOCOLLNPGM(x)
  25. #define SERIAL_ECHO_START serialprintPGM(echomagic);
  26. #define SERIAL_ECHO(x) SERIAL_PROTOCOL(x)
  27. #define SERIAL_ECHOPGM(x) SERIAL_PROTOCOLPGM(x)
  28. #define SERIAL_ECHOLN(x) SERIAL_PROTOCOLLN(x)
  29. #define SERIAL_ECHOLNPGM(x) SERIAL_PROTOCOLLNPGM(x)
  30. //things to write to serial from Programmemory. saves 400 to 2k of RAM.
  31. #define SerialprintPGM(x) serialprintPGM(PSTR(x))
  32. inline void serialprintPGM(const char *str)
  33. {
  34. char ch=pgm_read_byte(str);
  35. while(ch)
  36. {
  37. Serial.write(ch);
  38. ch=pgm_read_byte(++str);
  39. }
  40. }
  41. void get_command();
  42. void process_commands();
  43. void manage_inactivity(byte debug);
  44. #if X_ENABLE_PIN > -1
  45. #define enable_x() WRITE(X_ENABLE_PIN, X_ENABLE_ON)
  46. #define disable_x() WRITE(X_ENABLE_PIN,!X_ENABLE_ON)
  47. #else
  48. #define enable_x() ;
  49. #define disable_x() ;
  50. #endif
  51. #if Y_ENABLE_PIN > -1
  52. #define enable_y() WRITE(Y_ENABLE_PIN, Y_ENABLE_ON)
  53. #define disable_y() WRITE(Y_ENABLE_PIN,!Y_ENABLE_ON)
  54. #else
  55. #define enable_y() ;
  56. #define disable_y() ;
  57. #endif
  58. #if Z_ENABLE_PIN > -1
  59. #define enable_z() WRITE(Z_ENABLE_PIN, Z_ENABLE_ON)
  60. #define disable_z() WRITE(Z_ENABLE_PIN,!Z_ENABLE_ON)
  61. #else
  62. #define enable_z() ;
  63. #define disable_z() ;
  64. #endif
  65. #if E_ENABLE_PIN > -1
  66. #define enable_e() WRITE(E_ENABLE_PIN, E_ENABLE_ON)
  67. #define disable_e() WRITE(E_ENABLE_PIN,!E_ENABLE_ON)
  68. #else
  69. #define enable_e() ;
  70. #define disable_e() ;
  71. #endif
  72. enum AxisEnum {X_AXIS=0, Y_AXIS=1, Z_AXIS=2, E_AXIS=3};
  73. void FlushSerialRequestResend();
  74. void ClearToSend();
  75. void get_coordinates();
  76. void prepare_move();
  77. void kill();
  78. void enquecommand(const char *cmd); //put an ascii command at the end of the current buffer.
  79. #ifndef CRITICAL_SECTION_START
  80. #define CRITICAL_SECTION_START unsigned char _sreg = SREG; cli();
  81. #define CRITICAL_SECTION_END SREG = _sreg;
  82. #endif //CRITICAL_SECTION_START
  83. extern float homing_feedrate[];
  84. extern bool axis_relative_modes[];
  85. #endif