mirror of
https://github.com/adrigongv23/G26---Telemetry-Software.git
synced 2026-08-25 11:33:17 +02:00
10 lines
293 B
C++
10 lines
293 B
C++
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
|
|
bool uart_audio_init();
|
|
bool uart_send_audio(uint8_t frame_seq, const int8_t *audio_data, uint16_t audio_len);
|
|
void uart_process_received_audio(bool reproduce);
|
|
void uart_discard_received_audio();
|
|
bool uart_box_ptt_active();
|
|
void uart_audio_debug_report();
|