Skip to content

Commit

Permalink
increase camera buffer size
Browse files Browse the repository at this point in the history
  • Loading branch information
EricPedley committed Jun 11, 2024
1 parent e2695f4 commit a2841ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uavf_2024/imaging/camera_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class LogBuffer:
Buffer for logging data implementing a Lock for multithreading.
"""
def __init__(self):
self.log_data = deque(maxlen=128) # ~256mb of data
self.log_data = deque(maxlen=512) # ~1gb of data
self.lock = threading.Lock()

def append(self, datum : LogType):
Expand Down

0 comments on commit a2841ac

Please sign in to comment.