🐛 Fix MMU2 buzz (#23950)

Followup to #23943
This commit is contained in:
Ludy 2022-03-28 03:20:54 +02:00 committed by Scott Lahteine
parent be08d4c4f0
commit 071e5c336a

View File

@ -129,6 +129,5 @@
#endif
#define ERR_BUZZ() BUZZ(400, 40);
#define ATTN_BUZZ() do{ BUZZ(198, 404); BUZZ(4, 0); BUZZ(198, 404); }while(0)
#define OKAY_BUZZ() do{ BUZZ(100, 659); BUZZ(10, 0); BUZZ(100, 698); }while(0)
#define DONE_BUZZ(OK) do{ if (OK) OKAY_BUZZ(); else ERR_BUZZ(); }while(0)