| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /**
- * @file furi_hal_speaker.h
- * Speaker HAL
- */
- #pragma once
- #include <furi.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- /** Init speaker */
- void furi_hal_speaker_init();
- /** Deinit speaker */
- void furi_hal_speaker_deinit();
- /** Acquire speaker ownership
- *
- * @warning You must acquire speaker ownership before use
- *
- * @param timeout Timeout during which speaker ownership must be acquired
- *
- * @return bool returns true on success
- */
- FURI_WARN_UNUSED bool furi_hal_speaker_acquire(uint32_t timeout);
- /** Release speaker ownership
- *
- * @warning You must release speaker ownership after use
- */
- void furi_hal_speaker_release();
- /** Check current process speaker ownership
- *
- * @warning always returns true if called from ISR
- *
- * @return bool returns true if process owns speaker
- */
- bool furi_hal_speaker_is_mine();
- /** Play a note
- *
- * @warning no ownership check if called from ISR
- *
- * @param frequency The frequency
- * @param volume The volume
- */
- void furi_hal_speaker_start(float frequency, float volume);
- /** Set volume
- *
- * @warning no ownership check if called from ISR
- *
- * @param volume The volume
- */
- void furi_hal_speaker_set_volume(float volume);
- /** Stop playback
- *
- * @warning no ownership check if called from ISR
- */
- void furi_hal_speaker_stop();
- #ifdef __cplusplus
- }
- #endif
|