mirror of
https://agent.ghink.cloud/wb2osz/direwolf
synced 2025-04-04 11:48:30 +00:00
Add capability to send DTMF tones. -qd option now suppresses complaints about telemetry packets. Handle more than 150 destinations in tocalls.txt.
15 lines
227 B
C
15 lines
227 B
C
/* dtmf.h */
|
|
|
|
|
|
#include "audio.h"
|
|
|
|
void dtmf_init (struct audio_s *p_audio_config, int amp);
|
|
|
|
char dtmf_sample (int c, float input);
|
|
|
|
int dtmf_send (int chan, char *str, int speed, int txdelay, int txtail);
|
|
|
|
|
|
/* end dtmf.h */
|
|
|