mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-30 20:23:46 +08:00
d19754567d
* .h include only the strict minimum for their own parsing * this forces all files to include explicitment their needs and not count on far streched dependencies * this helps Makefile to rebuild only the minimum * according to this rule, most standalone .h are now gone * big app.h is gone * remove seldom __cplusplus, if c++ happens, everything will have to be done properly anyway * all unrequired include were removed * split common/ into common/ (client+arm) and common_arm/ (os+bootloader) * bring zlib to common/ * bring stuff not really/not yet used in common back to armsrc/ or client/ * bring liblua into client/ * bring uart into client/ * move some portions of code around (dbprint, protocols,...) * rename unused files into *_disabled.[ch] to make it explicit * rename soft Uarts between 14a, 14b and iclass, so a standalone could use several without clash * remove PrintAndLogDevice * move deprecated-hid-flasher from client to tools * Makefiles * treat deps in armsrc/ as in client/ * client: stop on warning (-Werror), same as for armsrc/ Tested on: * all standalone modes * Linux
86 lines
2.2 KiB
C
86 lines
2.2 KiB
C
#include "buzzer.h"
|
|
|
|
void Ring_BEE_ONCE(uint16_t music_note) {
|
|
BEE_ON();
|
|
SpinDelayUs(music_note);
|
|
BEE_OFF();
|
|
SpinDelayUs(music_note);
|
|
}
|
|
|
|
void ring_2_7khz(uint16_t count) {
|
|
Ring_BEE_TIME(n_2_7khz, count);
|
|
}
|
|
|
|
void Ring_BEE_TIME(uint16_t music_note, uint16_t count) {
|
|
for (uint16_t i = 0 ; i < count; i++)
|
|
Ring_BEE_ONCE(music_note);
|
|
SpinDelay(9);
|
|
}
|
|
|
|
void Ring_ALL(uint16_t count) {
|
|
Ring_BEE_TIME(note_1, count);
|
|
Ring_BEE_TIME(note_2, count);
|
|
Ring_BEE_TIME(note_3, count);
|
|
Ring_BEE_TIME(note_4, count);
|
|
Ring_BEE_TIME(note_5, count);
|
|
Ring_BEE_TIME(note_6, count);
|
|
Ring_BEE_TIME(note_7, count);
|
|
SpinDelay(10);
|
|
}
|
|
|
|
void Ring_Little_Star(uint16_t count) {
|
|
Ring_BEE_TIME(note_1, count);
|
|
Ring_BEE_TIME(note_1, count);
|
|
Ring_BEE_TIME(note_5, count);
|
|
Ring_BEE_TIME(note_5, count);
|
|
Ring_BEE_TIME(note_6, count);
|
|
Ring_BEE_TIME(note_6, count);
|
|
Ring_BEE_TIME(note_5, 2 * count);
|
|
LED_A_ON();
|
|
/*
|
|
Ring_BEE_TIME(note_4,count);
|
|
Ring_BEE_TIME(note_4,count);
|
|
Ring_BEE_TIME(note_3,count);
|
|
Ring_BEE_TIME(note_3,count);
|
|
Ring_BEE_TIME(note_2,count);
|
|
Ring_BEE_TIME(note_2,count);
|
|
Ring_BEE_TIME(note_1,2*count);
|
|
LED_A_OFF();
|
|
|
|
Ring_BEE_TIME(note_5,count);
|
|
Ring_BEE_TIME(note_5,count);
|
|
Ring_BEE_TIME(note_4,count);
|
|
Ring_BEE_TIME(note_4,count);
|
|
Ring_BEE_TIME(note_3,count);
|
|
Ring_BEE_TIME(note_3,count);
|
|
Ring_BEE_TIME(note_2,2*count);
|
|
LED_A_ON();
|
|
|
|
Ring_BEE_TIME(note_5,count);
|
|
Ring_BEE_TIME(note_5,count);
|
|
Ring_BEE_TIME(note_4,count);
|
|
Ring_BEE_TIME(note_4,count);
|
|
Ring_BEE_TIME(note_3,count);
|
|
Ring_BEE_TIME(note_3,count);
|
|
Ring_BEE_TIME(note_2,2*count);
|
|
LED_A_OFF();
|
|
|
|
Ring_BEE_TIME(note_1,count);
|
|
Ring_BEE_TIME(note_1,count);
|
|
Ring_BEE_TIME(note_5,count);
|
|
Ring_BEE_TIME(note_5,count);
|
|
Ring_BEE_TIME(note_6,count);
|
|
Ring_BEE_TIME(note_6,count);
|
|
Ring_BEE_TIME(note_5,2*count);
|
|
LED_A_ON();
|
|
|
|
Ring_BEE_TIME(note_4,count);
|
|
Ring_BEE_TIME(note_4,count);
|
|
Ring_BEE_TIME(note_3,count);
|
|
Ring_BEE_TIME(note_3,count);
|
|
Ring_BEE_TIME(note_2,count);
|
|
Ring_BEE_TIME(note_2,count);
|
|
Ring_BEE_TIME(note_1,2*count);
|
|
LED_B_ON();
|
|
*/
|
|
}
|