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.

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