https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 28927a3931589f72174013ed8260ca53859c6c0a authored by danne on 01 October 2019, 06:11:36 UTC
stubs.S:(5d3 correction of faulty stub. Thanks dfort)
Tip revision: 28927a3
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