Victor Oliveira
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
7 additions and
2 deletions
-
Marlin/src/MarlinCore.cpp
-
Marlin/src/libs/buzzer.h
|
|
@ -1048,6 +1048,11 @@ void setup() { |
|
|
|
SERIAL_ECHO_MSG("Compiled: " __DATE__); |
|
|
|
SERIAL_ECHO_MSG(STR_FREE_MEMORY, freeMemory(), STR_PLANNER_BUFFER_BYTES, (int)sizeof(block_t) * (BLOCK_BUFFER_SIZE)); |
|
|
|
|
|
|
|
// Init buzzer pin(s)
|
|
|
|
#if USE_BEEPER |
|
|
|
SETUP_RUN(buzzer.init()); |
|
|
|
#endif |
|
|
|
|
|
|
|
// Set up LEDs early
|
|
|
|
#if HAS_COLOR_LEDS |
|
|
|
SETUP_RUN(leds.setup()); |
|
|
|
|
|
@ -84,9 +84,9 @@ |
|
|
|
|
|
|
|
public: |
|
|
|
/**
|
|
|
|
* @brief Class constructor |
|
|
|
* @brief Init Buzzer |
|
|
|
*/ |
|
|
|
Buzzer() { |
|
|
|
static inline void init() { |
|
|
|
SET_OUTPUT(BEEPER_PIN); |
|
|
|
reset(); |
|
|
|
} |
|
|
|