Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cflib/crazyflie/mem/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class _ReadRequest:
Class used to handle memory reads that will split up the read in multiple
packets if necessary
"""
MAX_DATA_LENGTH = 20
MAX_DATA_LENGTH = 24

def __init__(self, mem, addr, length, cf):
"""Initialize the object with good defaults"""
Expand Down Expand Up @@ -141,7 +141,7 @@ class _WriteRequest:
Class used to handle memory reads that will split up the read in multiple
packets in necessary
"""
MAX_DATA_LENGTH = 25
MAX_DATA_LENGTH = 24

def __init__(self, mem, addr, data, cf, progress_cb=None):
"""Initialize the object with good defaults"""
Expand Down