My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /**
  2. * Marlin 3D Printer Firmware
  3. *
  4. * Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  5. * Copyright (c) 2016 Bob Cousins bobcousins42@googlemail.com
  6. * Copyright (c) 2015-2016 Nico Tonnhofer wurstnase.reprap@gmail.com
  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. #pragma once
  23. /**
  24. * Description: HAL for Arduino Due and compatible (SAM3X8E)
  25. *
  26. * For ARDUINO_ARCH_SAM
  27. */
  28. #define CPU_32_BIT
  29. #include "../shared/Marduino.h"
  30. #include "../shared/math_32bit.h"
  31. #include "../shared/HAL_SPI.h"
  32. #include "fastio.h"
  33. #include "watchdog.h"
  34. #include "timers.h"
  35. #include <stdint.h>
  36. // Define MYSERIAL0/1 before MarlinSerial includes!
  37. #if SERIAL_PORT == -1
  38. #define MYSERIAL0 customizedSerial1
  39. #elif SERIAL_PORT == 0
  40. #define MYSERIAL0 Serial
  41. #elif SERIAL_PORT == 1
  42. #define MYSERIAL0 Serial1
  43. #elif SERIAL_PORT == 2
  44. #define MYSERIAL0 Serial2
  45. #elif SERIAL_PORT == 3
  46. #define MYSERIAL0 Serial3
  47. #else
  48. #error "The required SERIAL_PORT must be from -1 to 3. Please update your configuration."
  49. #endif
  50. #ifdef SERIAL_PORT_2
  51. #if SERIAL_PORT_2 == SERIAL_PORT
  52. #error "SERIAL_PORT_2 must be different from SERIAL_PORT. Please update your configuration."
  53. #endif
  54. #if SERIAL_PORT_2 == -1
  55. #define MYSERIAL1 customizedSerial2
  56. #elif SERIAL_PORT_2 == 0
  57. #define MYSERIAL1 Serial
  58. #elif SERIAL_PORT_2 == 1
  59. #define MYSERIAL1 Serial1
  60. #elif SERIAL_PORT_2 == 2
  61. #define MYSERIAL1 Serial2
  62. #elif SERIAL_PORT_2 == 3
  63. #define MYSERIAL1 Serial3
  64. #else
  65. #error "SERIAL_PORT_2 must be from -1 to 3. Please update your configuration."
  66. #endif
  67. #define NUM_SERIAL 2
  68. #else
  69. #define NUM_SERIAL 1
  70. #endif
  71. #include "MarlinSerial.h"
  72. #include "MarlinSerialUSB.h"
  73. // On AVR this is in math.h?
  74. #define square(x) ((x)*(x))
  75. #ifndef strncpy_P
  76. #define strncpy_P(dest, src, num) strncpy((dest), (src), (num))
  77. #endif
  78. // Fix bug in pgm_read_ptr
  79. #undef pgm_read_ptr
  80. #define pgm_read_ptr(addr) (*((void**)(addr)))
  81. #undef pgm_read_word
  82. #define pgm_read_word(addr) (*((uint16_t*)(addr)))
  83. typedef int8_t pin_t;
  84. #define SHARED_SERVOS HAS_SERVOS
  85. #define HAL_SERVO_LIB Servo
  86. //
  87. // Interrupts
  88. //
  89. #define CRITICAL_SECTION_START uint32_t primask = __get_PRIMASK(); __disable_irq()
  90. #define CRITICAL_SECTION_END if (!primask) __enable_irq()
  91. #define ISRS_ENABLED() (!__get_PRIMASK())
  92. #define ENABLE_ISRS() __enable_irq()
  93. #define DISABLE_ISRS() __disable_irq()
  94. void cli(); // Disable interrupts
  95. void sei(); // Enable interrupts
  96. void HAL_clear_reset_source(); // clear reset reason
  97. uint8_t HAL_get_reset_source(); // get reset reason
  98. //
  99. // EEPROM
  100. //
  101. void eeprom_write_byte(uint8_t *pos, unsigned char value);
  102. uint8_t eeprom_read_byte(uint8_t *pos);
  103. void eeprom_read_block (void *__dst, const void *__src, size_t __n);
  104. void eeprom_update_block (const void *__src, void *__dst, size_t __n);
  105. //
  106. // ADC
  107. //
  108. extern uint16_t HAL_adc_result; // result of last ADC conversion
  109. #ifndef analogInputToDigitalPin
  110. #define analogInputToDigitalPin(p) ((p < 12u) ? (p) + 54u : -1)
  111. #endif
  112. #define HAL_ANALOG_SELECT(pin)
  113. inline void HAL_adc_init() {}//todo
  114. #define HAL_START_ADC(pin) HAL_adc_start_conversion(pin)
  115. #define HAL_ADC_RESOLUTION 10
  116. #define HAL_READ_ADC() HAL_adc_result
  117. #define HAL_ADC_READY() true
  118. void HAL_adc_start_conversion(const uint8_t adc_pin);
  119. uint16_t HAL_adc_get_result();
  120. //
  121. // Pin Map
  122. //
  123. #define GET_PIN_MAP_PIN(index) index
  124. #define GET_PIN_MAP_INDEX(pin) pin
  125. #define PARSED_PIN_INDEX(code, dval) parser.intval(code, dval)
  126. //
  127. // Tone
  128. //
  129. void toneInit();
  130. void tone(const pin_t _pin, const unsigned int frequency, const unsigned long duration=0);
  131. void noTone(const pin_t _pin);
  132. // Enable hooks into idle and setup for HAL
  133. #define HAL_IDLETASK 1
  134. void HAL_idletask();
  135. void HAL_init();
  136. //
  137. // Utility functions
  138. //
  139. void _delay_ms(const int delay);
  140. #pragma GCC diagnostic push
  141. #pragma GCC diagnostic ignored "-Wunused-function"
  142. int freeMemory();
  143. #pragma GCC diagnostic pop
  144. #ifdef __cplusplus
  145. extern "C" {
  146. #endif
  147. char *dtostrf(double __val, signed char __width, unsigned char __prec, char *__s);
  148. #ifdef __cplusplus
  149. }
  150. #endif