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.

I2CPositionEncoder.h 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016, 2017 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. #ifndef I2CPOSENC_H
  23. #define I2CPOSENC_H
  24. #include "../inc/MarlinConfig.h"
  25. #include "../module/planner.h"
  26. #include <Wire.h>
  27. //=========== Advanced / Less-Common Encoder Configuration Settings ==========
  28. #define I2CPE_EC_THRESH_PROPORTIONAL // if enabled adjusts the error correction threshold
  29. // proportional to the current speed of the axis allows
  30. // for very small error margin at low speeds without
  31. // stuttering due to reading latency at high speeds
  32. #define I2CPE_DEBUG // enable encoder-related debug serial echos
  33. #define I2CPE_REBOOT_TIME 5000 // time we wait for an encoder module to reboot
  34. // after changing address.
  35. #define I2CPE_MAG_SIG_GOOD 0
  36. #define I2CPE_MAG_SIG_MID 1
  37. #define I2CPE_MAG_SIG_BAD 2
  38. #define I2CPE_MAG_SIG_NF 255
  39. #define I2CPE_REQ_REPORT 0
  40. #define I2CPE_RESET_COUNT 1
  41. #define I2CPE_SET_ADDR 2
  42. #define I2CPE_SET_REPORT_MODE 3
  43. #define I2CPE_CLEAR_EEPROM 4
  44. #define I2CPE_LED_PAR_MODE 10
  45. #define I2CPE_LED_PAR_BRT 11
  46. #define I2CPE_LED_PAR_RATE 14
  47. #define I2CPE_REPORT_DISTANCE 0
  48. #define I2CPE_REPORT_STRENGTH 1
  49. #define I2CPE_REPORT_VERSION 2
  50. // Default I2C addresses
  51. #define I2CPE_PRESET_ADDR_X 30
  52. #define I2CPE_PRESET_ADDR_Y 31
  53. #define I2CPE_PRESET_ADDR_Z 32
  54. #define I2CPE_PRESET_ADDR_E 33
  55. #define I2CPE_DEF_AXIS X_AXIS
  56. #define I2CPE_DEF_ADDR I2CPE_PRESET_ADDR_X
  57. // Error event counter; tracks how many times there is an error exceeding a certain threshold
  58. #define I2CPE_ERR_CNT_THRESH 3.00
  59. #define I2CPE_ERR_CNT_DEBOUNCE_MS 2000
  60. #if ENABLED(I2CPE_ERR_ROLLING_AVERAGE)
  61. #define I2CPE_ERR_ARRAY_SIZE 32
  62. #endif
  63. // Error Correction Methods
  64. #define I2CPE_ECM_NONE 0
  65. #define I2CPE_ECM_MICROSTEP 1
  66. #define I2CPE_ECM_PLANNER 2
  67. #define I2CPE_ECM_STALLDETECT 3
  68. // Encoder types
  69. #define I2CPE_ENC_TYPE_ROTARY 0
  70. #define I2CPE_ENC_TYPE_LINEAR 1
  71. // Parser
  72. #define I2CPE_PARSE_ERR 1
  73. #define I2CPE_PARSE_OK 0
  74. #define LOOP_PE(VAR) LOOP_L_N(VAR, I2CPE_ENCODER_CNT)
  75. #define CHECK_IDX() do{ if (!WITHIN(idx, 0, I2CPE_ENCODER_CNT - 1)) return; }while(0)
  76. extern const char axis_codes[XYZE];
  77. typedef union {
  78. volatile int32_t val = 0;
  79. uint8_t bval[4];
  80. } i2cLong;
  81. class I2CPositionEncoder {
  82. private:
  83. AxisEnum encoderAxis = I2CPE_DEF_AXIS;
  84. uint8_t i2cAddress = I2CPE_DEF_ADDR,
  85. ecMethod = I2CPE_DEF_EC_METHOD,
  86. type = I2CPE_DEF_TYPE,
  87. H = I2CPE_MAG_SIG_NF; // Magnetic field strength
  88. int encoderTicksPerUnit = I2CPE_DEF_ENC_TICKS_UNIT,
  89. stepperTicks = I2CPE_DEF_TICKS_REV,
  90. errorCount = 0,
  91. errorPrev = 0;
  92. float ecThreshold = I2CPE_DEF_EC_THRESH;
  93. bool homed = false,
  94. trusted = false,
  95. initialised = false,
  96. active = false,
  97. invert = false,
  98. ec = true;
  99. float axisOffset = 0;
  100. int32_t axisOffsetTicks = 0,
  101. zeroOffset = 0,
  102. lastPosition = 0,
  103. position;
  104. millis_t lastPositionTime = 0,
  105. nextErrorCountTime = 0,
  106. lastErrorTime;
  107. //double positionMm; //calculate
  108. #if ENABLED(I2CPE_ERR_ROLLING_AVERAGE)
  109. uint8_t errIdx = 0;
  110. int err[I2CPE_ERR_ARRAY_SIZE] = { 0 };
  111. #endif
  112. //float positionMm; //calculate
  113. public:
  114. void init(const uint8_t address, const AxisEnum axis);
  115. void reset();
  116. void update();
  117. void set_homed();
  118. int32_t get_raw_count();
  119. FORCE_INLINE float mm_from_count(const int32_t count) {
  120. switch (type) {
  121. default: return -1;
  122. case I2CPE_ENC_TYPE_LINEAR:
  123. return count / encoderTicksPerUnit;
  124. case I2CPE_ENC_TYPE_ROTARY:
  125. return (count * stepperTicks) / (encoderTicksPerUnit * planner.axis_steps_per_mm[encoderAxis]);
  126. }
  127. }
  128. FORCE_INLINE float get_position_mm() { return mm_from_count(get_position()); }
  129. FORCE_INLINE int32_t get_position() { return get_raw_count() - zeroOffset - axisOffsetTicks; }
  130. int32_t get_axis_error_steps(const bool report);
  131. float get_axis_error_mm(const bool report);
  132. void calibrate_steps_mm(const uint8_t iter);
  133. bool passes_test(const bool report);
  134. bool test_axis(void);
  135. FORCE_INLINE int get_error_count(void) { return errorCount; }
  136. FORCE_INLINE void set_error_count(const int newCount) { errorCount = newCount; }
  137. FORCE_INLINE uint8_t get_address() { return i2cAddress; }
  138. FORCE_INLINE void set_address(const uint8_t addr) { i2cAddress = addr; }
  139. FORCE_INLINE bool get_active(void) { return active; }
  140. FORCE_INLINE void set_active(const bool a) { active = a; }
  141. FORCE_INLINE void set_inverted(const bool i) { invert = i; }
  142. FORCE_INLINE AxisEnum get_axis() { return encoderAxis; }
  143. FORCE_INLINE bool get_ec_enabled() { return ec; }
  144. FORCE_INLINE void set_ec_enabled(const bool enabled) { ec = enabled; }
  145. FORCE_INLINE uint8_t get_ec_method() { return ecMethod; }
  146. FORCE_INLINE void set_ec_method(const byte method) { ecMethod = method; }
  147. FORCE_INLINE float get_ec_threshold() { return ecThreshold; }
  148. FORCE_INLINE void set_ec_threshold(const float newThreshold) { ecThreshold = newThreshold; }
  149. FORCE_INLINE int get_encoder_ticks_mm() {
  150. switch (type) {
  151. default: return 0;
  152. case I2CPE_ENC_TYPE_LINEAR:
  153. return encoderTicksPerUnit;
  154. case I2CPE_ENC_TYPE_ROTARY:
  155. return (int)((encoderTicksPerUnit / stepperTicks) * planner.axis_steps_per_mm[encoderAxis]);
  156. }
  157. }
  158. FORCE_INLINE int get_ticks_unit() { return encoderTicksPerUnit; }
  159. FORCE_INLINE void set_ticks_unit(const int ticks) { encoderTicksPerUnit = ticks; }
  160. FORCE_INLINE uint8_t get_type() { return type; }
  161. FORCE_INLINE void set_type(const byte newType) { type = newType; }
  162. FORCE_INLINE int get_stepper_ticks() { return stepperTicks; }
  163. FORCE_INLINE void set_stepper_ticks(const int ticks) { stepperTicks = ticks; }
  164. FORCE_INLINE float get_axis_offset() { return axisOffset; }
  165. FORCE_INLINE void set_axis_offset(const float newOffset) {
  166. axisOffset = newOffset;
  167. axisOffsetTicks = int32_t(axisOffset * get_encoder_ticks_mm());
  168. }
  169. FORCE_INLINE void set_current_position(const float newPositionMm) {
  170. set_axis_offset(get_position_mm() - newPositionMm + axisOffset);
  171. }
  172. };
  173. class I2CPositionEncodersMgr {
  174. private:
  175. static bool I2CPE_anyaxis;
  176. static uint8_t I2CPE_addr, I2CPE_idx;
  177. public:
  178. static void init(void);
  179. // consider only updating one endoder per call / tick if encoders become too time intensive
  180. static void update(void) { LOOP_PE(i) encoders[i].update(); }
  181. static void homed(const AxisEnum axis) {
  182. LOOP_PE(i)
  183. if (encoders[i].get_axis() == axis) encoders[i].set_homed();
  184. }
  185. static void report_position(const int8_t idx, const bool units, const bool noOffset);
  186. static void report_status(const int8_t idx) {
  187. CHECK_IDX();
  188. SERIAL_ECHOPAIR("Encoder ", idx);
  189. SERIAL_ECHOPGM(": ");
  190. encoders[idx].get_raw_count();
  191. encoders[idx].passes_test(true);
  192. }
  193. static void report_error(const int8_t idx) {
  194. CHECK_IDX();
  195. encoders[idx].get_axis_error_steps(true);
  196. }
  197. static void test_axis(const int8_t idx) {
  198. CHECK_IDX();
  199. encoders[idx].test_axis();
  200. }
  201. static void calibrate_steps_mm(const int8_t idx, const int iterations) {
  202. CHECK_IDX();
  203. encoders[idx].calibrate_steps_mm(iterations);
  204. }
  205. static void change_module_address(const uint8_t oldaddr, const uint8_t newaddr);
  206. static void report_module_firmware(const uint8_t address);
  207. static void report_error_count(const int8_t idx, const AxisEnum axis) {
  208. CHECK_IDX();
  209. SERIAL_ECHOPAIR("Error count on ", axis_codes[axis]);
  210. SERIAL_ECHOLNPAIR(" axis is ", encoders[idx].get_error_count());
  211. }
  212. static void reset_error_count(const int8_t idx, const AxisEnum axis) {
  213. CHECK_IDX();
  214. encoders[idx].set_error_count(0);
  215. SERIAL_ECHOPAIR("Error count on ", axis_codes[axis]);
  216. SERIAL_ECHOLNPGM(" axis has been reset.");
  217. }
  218. static void enable_ec(const int8_t idx, const bool enabled, const AxisEnum axis) {
  219. CHECK_IDX();
  220. encoders[idx].set_ec_enabled(enabled);
  221. SERIAL_ECHOPAIR("Error correction on ", axis_codes[axis]);
  222. SERIAL_ECHOPGM(" axis is ");
  223. serialprintPGM(encoders[idx].get_ec_enabled() ? PSTR("en") : PSTR("dis"));
  224. SERIAL_ECHOLNPGM("abled.");
  225. }
  226. static void set_ec_threshold(const int8_t idx, const float newThreshold, const AxisEnum axis) {
  227. CHECK_IDX();
  228. encoders[idx].set_ec_threshold(newThreshold);
  229. SERIAL_ECHOPAIR("Error correct threshold for ", axis_codes[axis]);
  230. SERIAL_ECHOPAIR_F(" axis set to ", newThreshold);
  231. SERIAL_ECHOLNPGM("mm.");
  232. }
  233. static void get_ec_threshold(const int8_t idx, const AxisEnum axis) {
  234. CHECK_IDX();
  235. const float threshold = encoders[idx].get_ec_threshold();
  236. SERIAL_ECHOPAIR("Error correct threshold for ", axis_codes[axis]);
  237. SERIAL_ECHOPAIR_F(" axis is ", threshold);
  238. SERIAL_ECHOLNPGM("mm.");
  239. }
  240. static int8_t idx_from_axis(const AxisEnum axis) {
  241. LOOP_PE(i)
  242. if (encoders[i].get_axis() == axis) return i;
  243. return -1;
  244. }
  245. static int8_t idx_from_addr(const uint8_t addr) {
  246. LOOP_PE(i)
  247. if (encoders[i].get_address() == addr) return i;
  248. return -1;
  249. }
  250. static int8_t parse();
  251. static void M860();
  252. static void M861();
  253. static void M862();
  254. static void M863();
  255. static void M864();
  256. static void M865();
  257. static void M866();
  258. static void M867();
  259. static void M868();
  260. static void M869();
  261. static I2CPositionEncoder encoders[I2CPE_ENCODER_CNT];
  262. };
  263. extern I2CPositionEncodersMgr I2CPEM;
  264. #endif //I2CPOSENC_H