FreeDATA/modem/queues.py

12 lines
316 B
Python
Raw Normal View History

"""
Hold queues used by more than one module to eliminate cyclic imports.
"""
import queue
2023-05-26 14:25:48 +02:00
# Initialize FIFO queue to store received frames
MESH_RECEIVED_QUEUE = queue.Queue()
2023-06-11 09:12:40 +02:00
MESH_QUEUE_TRANSMIT = queue.Queue()
2023-06-13 14:03:36 +02:00
MESH_SIGNALLING_TABLE = []
2023-06-11 09:12:40 +02:00
# Commands we want to send to rigctld
RIGCTLD_COMMAND_QUEUE = queue.Queue()