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.

buzzer.h 3.1KB

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