mirror of https://github.com/DJ2LS/FreeDATA.git
19 lines
454 B
Python
19 lines
454 B
Python
from command import TxCommand
|
|
|
|
class QRVCommand(TxCommand):
|
|
"""Command for transmitting QRV frames.
|
|
|
|
This command builds and transmits QRV (Ready to Receive) frames.
|
|
"""
|
|
|
|
def build_frame(self):
|
|
"""Builds a QRV frame.
|
|
|
|
This method uses the frame factory to build a QRV (Ready to Receive)
|
|
frame.
|
|
|
|
Returns:
|
|
bytearray: The built QRV frame.
|
|
"""
|
|
return self.frame_factory.build_qrv()
|