My Marlin configs for Fabrikator Mini and CTC i3 Pro B
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 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. #pragma once
  23. #include "../inc/MarlinConfig.h"
  24. #if USE_BEEPER
  25. #include "circularqueue.h"
  26. #define TONE_QUEUE_LENGTH 4
  27. /**
  28. * @brief Tone structure
  29. * @details Simple abstraction of a tone based on a duration and a frequency.
  30. */
  31. struct tone_t {
  32. uint16_t duration;
  33. uint16_t frequency;
  34. };
  35. /**
  36. * @brief Buzzer class
  37. */
  38. class Buzzer {
  39. public:
  40. typedef struct {
  41. tone_t tone;
  42. uint32_t endtime;
  43. } state_t;
  44. private:
  45. static state_t state;
  46. protected:
  47. static CircularQueue<tone_t, TONE_QUEUE_LENGTH> buffer;
  48. /**
  49. * @brief Inverts the sate of a digital PIN
  50. * @details This will invert the current state of an digital IO pin.
  51. */
  52. FORCE_INLINE static void invert() { TOGGLE(BEEPER_PIN); }
  53. /**
  54. * @brief Turn off a digital PIN
  55. * @details Alias of digitalWrite(PIN, LOW) using FastIO
  56. */
  57. FORCE_INLINE static void off() { WRITE(BEEPER_PIN, LOW); }
  58. /**
  59. * @brief Turn on a digital PIN
  60. * @details Alias of digitalWrite(PIN, HIGH) using FastIO
  61. */
  62. FORCE_INLINE static void on() { WRITE(BEEPER_PIN, HIGH); }
  63. /**
  64. * @brief Resets the state of the class
  65. * @details Brings the class state to a known one.
  66. */
  67. static inline void reset() {
  68. off();
  69. state.endtime = 0;
  70. }
  71. public:
  72. /**
  73. * @brief Class constructor
  74. */
  75. Buzzer() {
  76. SET_OUTPUT(BEEPER_PIN);
  77. reset();
  78. }
  79. /**
  80. * @brief Add a tone to the queue
  81. * @details Adds a tone_t structure to the ring buffer, will block IO if the
  82. * queue is full waiting for one slot to get available.
  83. *
  84. * @param duration Duration of the tone in milliseconds
  85. * @param frequency Frequency of the tone in hertz
  86. */
  87. static void tone(const uint16_t duration, const uint16_t frequency=0);
  88. /**
  89. * @brief Tick function
  90. * @details This function should be called at loop, it will take care of
  91. * playing the tones in the queue.
  92. */
  93. static void tick();
  94. };
  95. // Provide a buzzer instance
  96. extern Buzzer buzzer;
  97. // Buzz directly via the BEEPER pin tone queue
  98. #define BUZZ(d,f) buzzer.tone(d, f)
  99. #elif HAS_BUZZER
  100. // Buzz indirectly via the MarlinUI instance
  101. #define BUZZ(d,f) ui.buzz(d,f)
  102. #else
  103. // No buzz capability
  104. #define BUZZ(d,f) NOOP
  105. #endif