https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 1f7e3ce8c2262b99d55478832cc4719270036b2e authored by alex@thinkpad on 05 February 2017, 00:37:58 UTC
Function task annotations (autogenerated).
Tip revision: 1f7e3ce
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