mirror of https://github.com/wb2osz/direwolf.git
21 lines
415 B
C
21 lines
415 B
C
/* multi_modem.h */
|
|
|
|
#ifndef MULTI_MODEM_H
|
|
#define MULTI_MODEM 1
|
|
|
|
/* Needed for typedef retry_t. */
|
|
#include "hdlc_rec2.h"
|
|
|
|
/* Needed for struct audio_s */
|
|
#include "audio.h"
|
|
|
|
|
|
void multi_modem_init (struct audio_s *pmodem);
|
|
|
|
void multi_modem_process_sample (int c, int audio_sample);
|
|
|
|
void multi_modem_process_rec_frame (int chan, int subchan, unsigned char *fbuf, int flen, int level, retry_t retries);
|
|
|
|
|
|
#endif
|