https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 8d7abdc857ae19256aceb9ff14534ec4e1179130 authored by a1ex on 02 May 2014, 05:56:33 UTC
Close branch DualISO_Menu
Tip revision: 8d7abdc
beep.h
#ifndef _beep_h_
#define _beep_h_

/* beep playing */
void beep();
void beep_custom(int duration, int frequency, int wait);
void beep_times(int times);
void unsafe_beep(); /* also beeps while recording */

/* wav recording */
void WAV_StartRecord(char* filename);
void WAV_StopRecord();
#endif

back to top