mirror of https://github.com/wb2osz/direwolf.git
18 lines
460 B
C
18 lines
460 B
C
|
|
/* hdlc_send.h */
|
|
|
|
// In version 1.7 an extra layer of abstraction was added here.
|
|
// Rather than calling hdlc_send_frame, we now use another function
|
|
// which sends AX.25, FX.25, or IL2P depending on
|
|
|
|
#include "ax25_pad.h"
|
|
#include "audio.h"
|
|
|
|
int layer2_send_frame (int chan, packet_t pp, int bad_fcs, struct audio_s *audio_config_p);
|
|
|
|
int layer2_preamble_postamble (int chan, int flags, int finish, struct audio_s *audio_config_p);
|
|
|
|
/* end hdlc_send.h */
|
|
|
|
|