mirror of
https://github.com/adrigongv23/G26---Telemetry-Software.git
synced 2026-08-25 11:33:17 +02:00
14 lines
353 B
C++
14 lines
353 B
C++
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
|
|
bool audio_init();
|
|
void audio_process();
|
|
|
|
void audio_set_microphone_enabled(bool enabled);
|
|
bool audio_capture_frame(const int8_t **out_audio, uint16_t *out_len);
|
|
|
|
void audio_play_frame_s8(const int8_t *audio, uint16_t len);
|
|
void audio_request_playback_stop();
|
|
void audio_resume_playback();
|
|
void audio_cut_playback();
|