update atrs list
[RRG-proxmark3.git] / armsrc / buzzer_disabled.h
blobb97862afe3d014b45795a8d725999234eb0e06ed
1 //-----------------------------------------------------------------------------
2 // Copyright (C) sww 2017.4.6
3 // Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
4 //
5 // This program is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // See LICENSE.txt for the text of the license.
16 //-----------------------------------------------------------------------------
18 #ifndef __BUZZER_H
19 #define __BUZZER_H
21 #include "common.h"
23 #define n_2_7khz 185
24 #define note_1 956
25 #define note_2 851
26 #define note_3 758
27 #define note_4 715
28 #define note_5 638
29 #define note_6 568
30 #define note_7 506
31 #define note_8 0
33 void Ring_BEE_ONCE(uint16_t music_note);
34 void Ring_BEE_TIME(uint16_t music_note, uint16_t count);
35 void ring_2_7khz(uint16_t count);
36 void Ring_ALL(uint16_t count);
37 void Ring_Little_Star(uint16_t count);
39 #endif