https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: c71ffa139339cbed935637ffd9b5d2b490ff255e authored by Daniel Fort on 20 September 2018, 03:08:30 UTC
Closed branch raw_video_10bit_12_bit_LVState-fw_updates-wip
Tip revision: c71ffa1
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