https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 60c712de8b89319f507fd0c2f3f4d1343b1b1a11 authored by Daniel Fort on 02 July 2017, 00:07:13 UTC
Fixed AE constants
Tip revision: 60c712d
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