PyCubed-Mini / flight_software

Flight Software for the PyCubed-Mini PocketQube platform
https://pocketqube.readthedocs.io/en/latest/
MIT License
3 stars 4 forks source link

Cleanup image/transmission queues to be instances of a priority queue class #390

Closed thetazero closed 3 months ago

thetazero commented 1 year ago

import them via

from image_queue import image_queue

so we can reduce the size of the files to something along the lines of

from priority_queue import PriorityQueue
image_queue = PriorityQueue(limit=5)