repo.or.cz
/
RRG-proxmark3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
text
[RRG-proxmark3.git]
/
armsrc
/
buzzer_disabled.h
blob
c8b6e447215f1cd295fbce9982c30a3298bc200a
1
/*******
2
--by sww.2017.4.6
3
*******/
4
5
#ifndef __BUZZER_H
6
#define __BUZZER_H
7
8
#include
"common.h"
9
10
#define n_2_7khz 185
11
#define note_1 956
12
#define note_2 851
13
#define note_3 758
14
#define note_4 715
15
#define note_5 638
16
#define note_6 568
17
#define note_7 506
18
#define note_8 0
19
20
void
Ring_BEE_ONCE
(
uint16_t
music_note
);
21
void
Ring_BEE_TIME
(
uint16_t
music_note
,
uint16_t
count
);
22
void
ring_2_7khz
(
uint16_t
count
);
23
void
Ring_ALL
(
uint16_t
count
);
24
void
Ring_Little_Star
(
uint16_t
count
);
25
26
#endif