public void addFrame(Frame frame) { rxFrameBuffer.addFrame(frame); }
/** * Adds a frame (AX.25 UI or HDLC frame, according to [AD01]) to the frame buffer of the transmitter. If the radio * mode is AX.25 (as specified in [AD01]), the AX.25 frame will contain the default callsigns as they are set in the * controller at the time this command is received. This command will disable any beacon thar is currently being * transmitted by the transceiver. The frame will not be added to the frame buffer if: * -The frame buffer is full * -The content size is 0 bytes * -The content size is larger than the maximum size (specified in [AD01]) */ public int SendFrame(Frame frame) { return(txFrameBuffer.addFrame(frame)); }